public async Task <ServiceExecutionResult> UpdateAsync(AbpUpdateInput input)
        {
            var args = CreateCommandLineArgs(input, "abp update");

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

            return(new ServiceExecutionResult(true));
        }
예제 #2
0
 public virtual Task <ServiceExecutionResult> UpdateAsync(AbpUpdateInput input)
 {
     return(_service.UpdateAsync(input));
 }