Albert Q.
Anaheim, CA
Apr 19, 2011
11
Posts
Re: Use of a .Net 4 assembly in ATEasy 8
Hi,
Currently, ATEasy8 only support assemblies build with target .NET framework 3.5 or earlier. We will add support for .NET framework 4.0 in the future release of ATEasy8.
To work-around this problem, you need to create an application config file containing the following XML text :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<!-- http://msdn.microsoft.com/en-us/library/w4atty68.aspx -->
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319" />
<supportedRuntime version="v3.5" />
<supportedRuntime version="v3.0" />
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>
The config file must have the same name as the application (e.g ATEasy.exe.config or MyApp.exe.config) and must reside in the same folder as the application. I have created and attached to this incident a sample config file, please download, rename the file and copy it to the ATEasy folder or the folder containing your stand-alone executable.
Regards,
Albert
File Attachment:
ATEasy.exe.config