Created
May 26, 2022 16:53
-
-
Save talkingdotnet/8c5e5efd9e47f0b4f68e30e46a070595 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var host = new WebHostBuilder() | |
.UseKestrel() | |
.UseContentRoot(Directory.GetCurrentDirectory()) | |
.UseIISIntegration() | |
.UseStartup<Startup>() | |
.Build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment