$ mkdir HelloWorldAspNetCore $ cd HelloWorldAspNetCore
$ dotnet new -t web Created new C# project in /home/atameldev/HelloWorldAspNetCore.
public static void Main(string[] args) { var host = new WebHostBuilder() .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) .UseIISIntegration() .UseStartup() .UseUrls("http://*:8080") .Build(); host.Run(); }
$ dotnet restore … log : Restore completed in 16298ms.
$ dotnet run … Now listening on: http://*:8080 Application started. Press Ctrl+C to shut down.
0 件のコメント :
コメントを投稿