Configuring LabVIEW to load .NET 4.8 assemblies

XJIntegration is built using the .NET 4.8 framework. If using LabVIEW 2013 or a more recent version, which uses the 4.0 CLR, no further action should be required to load the assembly.

However, if using LabVIEW 2012 or earlier, a .NET configuration file must be created to allow it to load .NET 4.8 assemblies. In the LabVIEW directory in Program Files, create a text file, named "LabVIEW.exe.config" containing the following text:

<?xml version="1.0"?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
  </startup>
</configuration>