using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Yi.Abp.Tool; class Program { static async Task Main(string[] args) { #if DEBUG //args = ["v"]; //args = ["-v"]; //args = ["h"]; //args = ["-h"]; //args = []; //args = ["12312"]; //args = ["new", "Acme.Book", "-t", "module", "-csf"]; //args = ["new", "Acme.Book", "-t", "module"]; args = ["add-module", "Acme.Demo", "-s", "D:\\code\\csharp\\source\\Yi\\Yi.Abp.Net8", "-modulePath", "D:\\code\\csharp\\source\\Yi\\Yi.Abp.Net8\\module\\acme-demo"]; #endif try { IHost host = Host.CreateDefaultBuilder() .ConfigureServices(async (host, service) => { await service.AddApplicationAsync(); }) //.ConfigureAppConfiguration(configurationBuilder => //{ // configurationBuilder.AddJsonFile("appsettings.json"); //}) .UseAutofac() .Build(); var commandSelector = host.Services.GetRequiredService(); await commandSelector.SelectorAsync(args); } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine(ex.StackTrace); } } }