$ mkdir HelloWorldAspNetCore$ cd HelloWorldAspNetCore
$ dotnet new -t webCreated 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://*:8080Application started. Press Ctrl+C to shut down.
Use promo code NEXT1720 to save $300 off general admission
No comments :
Post a Comment