Is .NET installed when using C++ as a language using VS.NET2003?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Meya-awe

    Is .NET installed when using C++ as a language using VS.NET2003?

    When a C# apps is deployed, the PC running it needs to have the .NET
    Framework installed, true? Now my real question, if i use VS .NET 2003
    or 2005 to create a C++ application, does the PC running the resulting
    app need .NET framework installed?
    thanks,
    BRAMOIN

    *** Sent via Developersdex http://www.developersdex.com ***
  • Chris Priede

    #2
    Re: Is .NET installed when using C++ as a language using VS.NET2003?

    Hi,

    Meya-awe wrote:[color=blue]
    > Now my real question, if i use VS .NET
    > 2003 or 2005 to create a C++ application, does
    > the PC running the resulting app need .NET
    > framework installed?[/color]

    That depends on the type of C++ project you choose -- C++ .NET projects will
    require .NET framework, while Win32, MFC or ATL projects will not.

    Of course, the functionality of .NET framework won't be available in the
    other project types either, and if you are used to developing with .NET, you
    will find things to be very different.

    --
    Chris Priede


    Comment

    • Meya-awe

      #3
      Re: Is .NET installed when using C++ as a language using VS.NET2003?

      What if i want to create a DLL which will not require .NET framework
      installed (with no .NET dependencies), Which project type do i select
      for a DLL?
      thanks,
      BRAMOIN

      *** Sent via Developersdex http://www.developersdex.com ***

      Comment

      • Chris Priede

        #4
        Re: Is .NET installed when using C++ as a language using VS.NET2003?

        Meya-awe wrote:[color=blue]
        > What if i want to create a DLL which will not require .NET framework
        > installed (with no .NET dependencies), Which project type do i select
        > for a DLL?[/color]

        For a DLL without .NET or other framework dependencies, try Win32 Project
        and change its type to DLL in the second step (Application Settings).

        --
        Chris Priede


        Comment

        Working...