From 6cea45dcd3ad84c94c0062d0211736bba53188f2 Mon Sep 17 00:00:00 2001 From: mugisoba <51015092+mugisoba@users.noreply.github.com> Date: Thu, 10 Sep 2020 07:02:24 +0900 Subject: [PATCH] fix c# json serializer commandline argument docs (#6104) --- docs/source/CsharpUsage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/CsharpUsage.md b/docs/source/CsharpUsage.md index f7f585db9..4bf012a8f 100644 --- a/docs/source/CsharpUsage.md +++ b/docs/source/CsharpUsage.md @@ -155,7 +155,7 @@ To use: An additional feature of the object API is the ability to allow you to serialize & deserialize a JSON text. -To use Json Serialization, add `--gen-json-serializer` option to `flatc` and +To use Json Serialization, add `--cs-gen-json-serializer` option to `flatc` and add `Newtonsoft.Json` nuget package to csproj. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cs}