Configuration files
- Last UpdatedJul 22, 2024
- 1 minute read
When you create a GRAccess application, a configuration file for application should
be created in the same location as the GRAccess application (EXE). The configuration
file name should be in the format:
<ApplicationName>.exe.config
Add the following xml into the file, under:
configuration > runtime > assemblyBinding
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<requiredRuntime version="v2.0.50727" safemode="true"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1"/>
</startup>
<runtime>
<assemblyBinding>
<dependentAssembly>
<assemblyIdentity name="ArchestrA.GRAccess"
publicKeyToken="23106a86e706d0ae"
culture=""/>
<bindingRedirect oldVersion="1.0.0.0-1.9.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
For more information about assembly binding, refer to: