Home All Groups Group Topic Archive Search About
Author
1 Dec 2006 8:57 PM
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

Author
1 Dec 2006 9:03 PM
Herfried K. Wagner [MVP]
"G .Net" <nodamnspam@email.com> schrieb:
> 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/>
Author
1 Dec 2006 9:49 PM
Ryan S. Thiele
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.com> wrote 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
Author
4 Dec 2006 9:29 AM
G .Net
Thanks guys


"Ryan S. Thiele" <mali***@verizon.net> wrote in message
news:Pr1ch.29$bW2.12@trndny04...
Show quoteHide 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.com> wrote 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
>
>
>