I am trying to parse a json inside an SSIS package with a script component.
I have - MVS 2017 (SSDT) - MS Visual C# 2017, - .NET Framework 4.5
The NuGet Manager suggests the Newtosoft.Json V: 9.0.1 as the latest.
After instelling it I use the following code to test the task :
dynamic result = JsonConvert.DeserializeObject("{ 'betType': 'Jon Smith'}");
And I get the error:
System.IO.FileNotFoundException: Could not load file or assembly 'Newtonsoft.Json, Version=9.0.0.0 ...
Also., in the solution explorer of the script component under the references the Version of the Newtonsoft.Json is 9.0.0.0.
I tried to reinstall the package but it didn't work. Also no later version is available through the nuget manager.