Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public static void Main(string[] args)
  2. {
  3. var host = new WebHostBuilder()
  4. .UseKestrel()
  5. .UseContentRoot(@"\\luna\home\contentRoot")
  6. .UseWebRoot(@"C:\tmp\webRoot")
  7. .UseIISIntegration()
  8. .UseStartup<Startup>()
  9. .Build();
  10.  
  11. host.Run();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement