Repository cleanup, Added art
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Microsoft.AspNetCore;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace MyWebsite
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args) =>
|
||||
CreateWebHostBuilder(args).Build().Run();
|
||||
|
||||
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
|
||||
WebHost.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user