The Security Center 5.10 SDK assemblies are compiled in projects targeting .NET Framework 4.8. The upgrade to .NET 4.8 impacts standalone applications and workspace SDK modules. It is important to know how the modules are affected and if any action is required.
Note: If you cannot update your integration to .NET 4.8, you can use the Security Center 5.8.1.0 SDK package to connect to a
5.10 system.
Standalone applications and Workspace SDK modules
Developing a new SDK application, or recompiling an existing application with updated references to Security Center 5.10 SDK requires the following:- Visual Studio 2012 or higher
- Microsoft .NET Framework 4.8 Developer pack
- Projects that reference the SDK assemblies need to target .NET Framework 4.8 or higher
Standalone applications only
If your existing integrations use a .NET version that is earlier than 4.8, you must do one of the following:- Compile your integration with the Security Center 5.9 SDK and deploy again with your
updated integration.Important: The updated integration will not be compatible with an earlier version of the Security Center SDK.
- Adapt your current application to Security Center 5.9 SDK without recompiling.
- Deploy the application with an exe.config file that includes a
supported runtime element and a binding redirection.Attention:
<?xml version="1.0"?> <configuration> <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> </startup> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Genetec.Sdk" publicKeyToken="a446968a32b751de" culture="neutral"/> <bindingRedirect oldVersion="1.2.0.0-65535.85535.85535.85535" newVersion="5.9.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Genetec.Sdk.Media" publicKeyToken="a446968a32b751de" culture="neutral"/> <bindingRedirect oldVersion="1.2.0.0-65535.85535.85535.85535" newVersion="5.9.0.0"/> </dependentAssembly> </assemblyBinding> </runtime> </configuration>
- Deploy the application with an exe.config file that includes a
supported runtime element and a binding redirection.
For additional information on the supported runtime element, see https://msdn.microsoft.com/en-us/library/ff657133(v=vs.110).aspx.
For additional information on binding redirection, see https://msdn.microsoft.com/en-us/library/2fc472t2(v=vs.110).aspx.