Does VS 2005 supprts to compile a cprogram using .NET 1.1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have few web parts been developed in Visual Studio 2003(.NET 1.1)
And using Visual Studio 2005 can I compile them using .NET 1.1.And if
possible how to configure the VS 2005.I observed by default VS 2005 compiles
the application using .NET 2.0.

Thanks.

Ghanashyam
 
Ghanashyam said:
I have few web parts been developed in Visual Studio 2003(.NET 1.1)
And using Visual Studio 2005 can I compile them using .NET 1.1.And if
possible how to configure the VS 2005.I observed by default VS 2005
compiles the application using .NET 2.0.

VS2005 targets only the 2.0 framework. However, you can find MSBuild
targets files on the web that will allow you to build 1.1 apps with VS2005.

For example:

http://blogs.msdn.com/jomo_fisher/archive/2005/04/22/410903.aspx

http://forums.microsoft.com/msdn/showpost.aspx?postid=112278&siteid=1

http://www.gotdotnet.com/codegallery/codegallery.aspx?id=22a73581-57c1-4874-a7d5-c9138c8c1f4b

-cd
 
Back
Top