How to create independent .NET applications using Visual Studio?

There are many C ++ IDEs. However, I find Visual Stuido (Visual Studio 2010 Pro) the most comfortable, perhaps because I spent a lot of time on it. The problem is that I really do not like .NET-dependent products both in speed and in compatibility.

I think there is no way to compile VB and C # codes without .NET dependency (please correct me if I am wrong). In C ++, is there a way to use the VS IDE with all its features, such as autocomplete, GUI design, etc., while preserving all unmanaged codes so that .NET is not required?

+8
c ++ visual-studio-2010 unmanaged
source share
1 answer

When you create a new project, if you select a Win32 project, then it is a "native" C ++ application and does not depend on .NET. For existing projects, the corresponding setting is Configuration Properties -> General -> Common Language Runtime Support . Set this parameter to No Common Language Runtime Support to remove .NET dependencies.

Of course, the main developers of the user interface for VC ++ are the designers of WPF and Windows.Forms, which depend on the .NET components for their implementation. If you do not want to use them, you are stuck using MFC for your user interface. This is not my idea of ​​a good time, but many people use it.

+6
source share

All Articles