File: StartupWithNewtonsoftJson.cs | Web Access |
Project: src\src\Mvc\test\WebSites\BasicWebSite\BasicWebSite.csproj (BasicWebSite) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace BasicWebSite; public class StartupWithNewtonsoftJson { public void ConfigureServices(IServiceCollection services) { services .AddMvc() .AddNewtonsoftJson(); } public void Configure(IApplicationBuilder app) { app.UseDeveloperExceptionPage(); app.UseRouting(); app.UseEndpoints((endpoints) => endpoints.MapDefaultControllerRoute()); } } |