Skip to content

Instantly share code, notes, and snippets.

@evan-boissonnot
Created February 16, 2019 11:25
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 evan-boissonnot/96d3690adc971e2e169f5828990e3944 to your computer and use it in GitHub Desktop.
Save evan-boissonnot/96d3690adc971e2e169f5828990e3944 to your computer and use it in GitHub Desktop.
Use Cors, asp.net api, asp.net core
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseCors();
app.UseMvc();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment