T
Todd Brown
I'm building a .NET application that I want to be as compatible as
possible. Hence, I want to target .NET 1.0. I followed the
instructions in the VS online documentation which basically consisted of
creating this configuration file:
<?xml version ="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v1.0.3705" />
</startup>
<runtime>
<assemblyBinding ...appliesTo="v1.0.3705">
<dependentAssembly>
<assemblyIdentity .../>
<bindingRedirect oldVersion="..." newVersion="1.0.3300.0"/>
</dependentAssembly>
...
However, it didn't work. I added this configuration file both to my
project and the associated setup project. The setup says that .NET
1.1.4322 is required.
Do I need to tell my project to *use* this configuration file somehow?
Do I need to do something different for the setup project? Please help!
-- Todd Brown
possible. Hence, I want to target .NET 1.0. I followed the
instructions in the VS online documentation which basically consisted of
creating this configuration file:
<?xml version ="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v1.0.3705" />
</startup>
<runtime>
<assemblyBinding ...appliesTo="v1.0.3705">
<dependentAssembly>
<assemblyIdentity .../>
<bindingRedirect oldVersion="..." newVersion="1.0.3300.0"/>
</dependentAssembly>
...
However, it didn't work. I added this configuration file both to my
project and the associated setup project. The setup says that .NET
1.1.4322 is required.
Do I need to tell my project to *use* this configuration file somehow?
Do I need to do something different for the setup project? Please help!
-- Todd Brown