Q: VS2005

  • Thread starter Thread starter G .Net
  • Start date Start date
G

G .Net

Hi

Is there a way in Visual Studio 2005 to compile a solution using .Net 1.0 or
..Net 1.1?

Thanks

G
 
This is held in the app.config file.

Create an application.Config file and place this in the file. Replace the
'v2.0.50727' with your version e.g. 'v1.1.02'

<startup>
<supportedRuntime version="v2.0.50727" safemode="true"/>
<requiredRuntime version="v2.0.50727" safemode="true"/>
</startup>
good luck!

You can also have MSVS use this framwork.
Goto the MSVS directory (default is C:\Program Files\Microsoft Visual Studio
8\Common7\IDE).
Open 'devenv.exe.config' file.
Find the line like the one above.
Replace the version with the version you want.


Hope this helps, and good luck!

--
--
Thiele Enterprises - The Power Is In Your Hands Now!
--
Hi

Is there a way in Visual Studio 2005 to compile a solution using .Net 1.0 or
..Net 1.1?

Thanks

G
 
Back
Top