Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

Application Server

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:

https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/redirect-assembly-versions#specifying-assembly-binding-in-configuration-files

TitleResults for “How to create a CRG?”Also Available in