The qbo.Application project has been updated to reference Newtonsoft.JSON version 9.0.0.0, from NuGet. This is the first NuGet package used in qbo.Core (though many plugins already use them). If you have not used NuGet before, you will refresh NuGet packages by:
For example, the first time you attempt to build qbo.Application without the Newtonsoft.JSON package installed, you will get something like: Error CS0246 The type or namespace name 'Newtonsoft' could not be found (are you missing a using directive or an assembly reference?) qbo.Application F:\Projects\qbo3\qbo.Core\Application Tier\qbo.Application\Configuration\Credential.cs Note that the following should be added to the root configuration element of web.config until all references to Newtonsoft.JSON are updated to 9.0: <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0"/> </dependentAssembly> </assemblyBinding> </runtime> |
Quandis Business Objects 3 > Release Notes >