Example #1
0
        public async Task <int> ExecuteAsync(GetFrameworksCommand command)
        {
            var frameworks = _templatesService.GetFrameworks(command.ProjectType);

            _messageService.SendResult(MessageType.GetFrameworksResult, frameworks);

            return(await Task.FromResult(0));
        }