public virtual async Task <ServiceExecutionResult> GetSourceAsync(AbpGetSourceInput input)
        {
            var args = CreateCommandLineArgs(input, "abp get-source", input.ModuleName);

            using (_currentDirectoryHelper.Change(input.Directory))
            {
                await _getSourceCommand.ExecuteAsync(args);
            }

            return(new ServiceExecutionResult(true));
        }
Ejemplo n.º 2
0
 public virtual Task <ServiceExecutionResult> GetSourceAsync(AbpGetSourceInput input)
 {
     return(_service.GetSourceAsync(input));
 }