February 2018
Intermediate to advanced
668 pages
15h 18m
English
We'll create two separate application projects, and from one of them we'll make a request to other. The other project is an ASP.NET Core project, and we'll enable/configure CORS in it:
dotnet new mvc -n Chapter11.R3.Server
"Microsoft.AspNetCore.MVC": "2.0.0"
public void ConfigureServices(IServiceCollection services){ services.AddMVC();}public void Configure(IApplicationBuilder app){ app.UseMVC();}