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"?>
<configuratio n>
<startup>
<supportedRunti me version="v1.0.3 705" />
</startup>
<runtime>
<assemblyBindin g ...appliesTo="v 1.0.3705">
<dependentAssem bly>
<assemblyIdenti ty .../>
<bindingRedirec t oldVersion="... " newVersion="1.0 .3300.0"/>
</dependentAssemb ly>
...
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"?>
<configuratio n>
<startup>
<supportedRunti me version="v1.0.3 705" />
</startup>
<runtime>
<assemblyBindin g ...appliesTo="v 1.0.3705">
<dependentAssem bly>
<assemblyIdenti ty .../>
<bindingRedirec t oldVersion="... " newVersion="1.0 .3300.0"/>
</dependentAssemb ly>
...
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
Comment