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

  • Thread starter Thread starter Meya-awe
  • Start date Start date
M

Meya-awe

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
 
Hi,

Meya-awe said:
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?

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.
 
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
 
Meya-awe said:
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?

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top