Connecting Tech Pros Worldwide Forums | Help | Site Map

Q: VS2005

G .Net
Guest
 
Posts: n/a
#1: Dec 1 '06
Hi

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

Thanks

G



Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#2: Dec 1 '06

re: Q: VS2005


"G .Net" <nodamnspam@email.comschrieb:
Quote:
Is there a way in Visual Studio 2005 to compile a solution using .Net 1.0
or .Net 1.1?
No, but you can install VS.NET 2002/2003 side-by-side with VS 2005. In
addition, check out MSBee:

MSBee
<URL:http://msdn.microsoft.com/vstudio/downloads/tools/msbee/>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Ryan S. Thiele
Guest
 
Posts: n/a
#3: Dec 1 '06

re: Q: VS2005


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!
--
"G .Net" <nodamnspam@email.comwrote in message
news:T7Kdnbi805v1Cu3YnZ2dneKdnZydnZ2d@pipex.net...
Hi

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

Thanks

G



G .Net
Guest
 
Posts: n/a
#4: Dec 4 '06

re: Q: VS2005


Thanks guys


"Ryan S. Thiele" <maligui@verizon.netwrote in message
news:Pr1ch.29$bW2.12@trndny04...
Quote:
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!
--
"G .Net" <nodamnspam@email.comwrote in message
news:T7Kdnbi805v1Cu3YnZ2dneKdnZydnZ2d@pipex.net...
Hi
>
Is there a way in Visual Studio 2005 to compile a solution using .Net 1.0
or
.Net 1.1?
>
Thanks
>
G
>
>
>

Closed Thread