aspnetcore/src/MusicStore/Program.cs

19 lines
401 B
C#

using Microsoft.AspNetCore.Hosting;
namespace MusicStore
{
public static class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseDefaultConfiguration(args)
.UseIISPlatformHandlerUrl()
.UseStartup("MusicStore")
.Build();
host.Run();
}
}
}