Version Update

Update to version SR4 in a Private Cloud (Version 2.60)

204 views 18 December, 2017 10 April, 2018 Valuekeep 0

To update to this version under a Private Cloud setting, the .NET Framework must be updated to version 4.6.1. Check if the server where Valuekeep is installed has the latest Windows updates or manually install the .NET Framework from this link:

https://www.microsoft.com/en-us/download/details.aspx?id=49981

It is also necessary to update the web.config file for the Web API (c:Program Files (x86)ValuekeepValuekeep-UniverseWebAPIWeb.config) com with the following changes:

  1. Change the Framework version to 4.6.1:

<system.web>
<compilation targetFramework=”4.6.1” debug=”false” />

2. Add “dependentAssembly” entries:

<runtime>
<assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″>
(…)
<dependentAssembly>
<assemblyIdentity name=”System.ServiceModel” publicKeyToken=”b77a5c561934e089″ culture=”neutral” />
<bindingRedirect oldVersion=”0.0.0.0-4.0.0.0″ newVersion=”4.0.0.0″ />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name=”System.Web.Http” publicKeyToken=”31bf3856ad364e35″ culture=”neutral” />
<bindingRedirect oldVersion=”0.0.0.0-5.0.0.0″ newVersion=”5.0.0.0″ />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name=”System.Diagnostics.DiagnosticSource” publicKeyToken=”cc7b13ffcd2ddd51″ culture=”neutral” />
<bindingRedirect oldVersion=”0.0.0.0-4.0.2.1″ newVersion=”4.0.2.1″ />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name=”SimpleInjector” publicKeyToken=”984cb50dea722e99″ culture=”neutral” />
<bindingRedirect oldVersion=”0.0.0.0-4.0.11.0″ newVersion=”4.0.11.0″ />
</dependentAssembly>
<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>
<dependentAssembly>
<assemblyIdentity name=”StackExchange.Redis.StrongName” publicKeyToken=”c219ff1ca8c2ce46″ culture=”neutral” />
<bindingRedirect oldVersion=”0.0.0.0-1.2.6.0″ newVersion=”1.2.6.0″ />
</dependentAssembly>

 

Foi útil?