Skip to content

Instantly share code, notes, and snippets.

@fabriciosanchez
Last active May 18, 2018 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabriciosanchez/7dac6e4b2c594f583d7ca0069984c8f8 to your computer and use it in GitHub Desktop.
Save fabriciosanchez/7dac6e4b2c594f583d7ca0069984c8f8 to your computer and use it in GitHub Desktop.
public static IWebHost BuildWebHost(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseUrls("http://*:8080;")
.UseStartup<Startup>()
.Build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment