Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Brandenburg <rybrande@microsoft.com>2019-05-31 00:15:17 +0300
committerGitHub <noreply@github.com>2019-05-31 00:15:17 +0300
commit18a230737a3ebf02b44db2c24a14399f41eadc4d (patch)
tree572faff09b46beadeaf13eb53fdd788412e4bb18 /src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp
parent98d02bb61774731224703a8026bbb3699fe18265 (diff)
Remove Newtonsoft.Json (#10630)
Diffstat (limited to 'src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp')
-rw-r--r--src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Startup.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Startup.fs b/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Startup.fs
index 3df5e59353..d1611219ff 100644
--- a/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Startup.fs
+++ b/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Startup.fs
@@ -22,7 +22,7 @@ type Startup private () =
// This method gets called by the runtime. Use this method to add services to the container.
member this.ConfigureServices(services: IServiceCollection) =
// Add framework services.
- services.AddControllers().AddNewtonsoftJson() |> ignore
+ services.AddControllers() |> ignore
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
member this.Configure(app: IApplicationBuilder, env: IWebHostEnvironment) =