Targeting .NET Framework 1.1 using Visual Studio 2005?

Is is possible to target the .NET Framework using Visual Studio 2005

Thanks for you help,


Answer this question

Targeting .NET Framework 1.1 using Visual Studio 2005?

  • Martin Nuss

     Frank Nesse wrote:
    And how about using .Net framework 2.0 with Visual Studio 2003 In VS 2003 I can only select from 1.0 or 1.1 when setting the supported runtime property of a project. (I have installed .Net framework 2.0 and the 2.0 SDK.)


    Apps build with VS 2003 will usually run on 2.0.  However, if a user has both 1.1 and 2.0, it will use 1.1 by default.  To force it to use 2.0, you just need a config file as follows:
    <configuration>
      <startup>
        <supportedRuntime version="v2.0.***"/>
      </startup>
    </configuration>

    Replace *** with the remaining appropriate framework version.

    David Anton
    www.tangiblesoftwaresolutions.com
    Instant C#: VB.NET to C# Converter
    Instant VB: C# to VB.NET Converter
    Instant C++: C# to C++ Converter
    Instant J#: VB.NET to J# Converter
    Clear VB: Cleans up VB.NET code

  • Jimmy M Joy

    Hi,

    Yes, you can build 1.1 projects in VS2005. You must use MSBuild to do that. Here's a reference. MSBUILD




    cheers,

    Paul June A. Domag


  • praveench2k

    And how about using .Net framework 2.0 with Visual Studio 2003 In VS 2003 I can only select from 1.0 or 1.1 when setting the supported runtime property of a project. (I have installed .Net framework 2.0 and the 2.0 SDK.)


  • Raananan

    ok, I will give it a try.

    Thank you for your help.


  • Mohammed Noor

    Hi,

    I think this is not possible. I've not heard of any tools that could provide this kind of interaction. I haven't checked if MSBuild could be used in VS2003. You can check it on the link that I have provided....



    cheers,

    Paul June A. Domag


  • Targeting .NET Framework 1.1 using Visual Studio 2005?