There are five categories of Visual C++ projects: .NET, ATL, MFC, Win32, and General. The following sections describe each of these.
|
The following Visual C++ .NET projects (or managed C++ projects, as they are sometimes known) are available in Visual Studio .NET:
This template creates a .NET-based Windows application with a Windows Forms GUI.
This template creates a .NET class library (DLL).
This template creates a .NET class library intended to contain Windows Forms controls.
This template creates an ASP.NET web application that provides a web service.
This template builds a .NET-based command-line application.
This template creates a .NET-based Windows Service. It creates a class that inherits from System.ServiceProcess.ServiceBase.
This template creates a Managed C++ project that initially contains no files.
The following Visual C++ ATL projects are available in Visual Studio .NET:
This template creates an ATL-based DLL, executable, or Windows Service that implements one or more COM classes. By default, this project template uses the new attributed version of ATL.
This template creates an ATL Server ISAPI extension DLL that can be used to create a high-performance web-based UI.
This template creates an ATL Server ISAPI extension DLL that can be used to create a high-performance web service.
The following Visual C++ MFC projects are available in Visual Studio .NET:
This template creates an MFC-based ActiveX control. Its output will be an .ocx file.
This template creates an MFC Windows Application.
This template creates a DLL that uses MFC.
This template creates an MFC ISAPI extension.
The following Visual C++ Win32 projects are available in Visual Studio .NET:
This template builds a command-line application. It creates a standard Win32 EXE file. This is essentially a specialized version of the Win32 Project template.
This template builds a Windows Application, a Console Application, a DLL, or a static library. By default, these projects have no access to technologies such as the MFC or the ATL. Only the standard C++ libraries and the raw Win32 API are available. (The wizard provides options to enable MFC support in console or static library applications. You can also enable the ATL in console applications. This will allow you to use the classes these libraries define, but this wizard will not generate all of the framework code you would get with the library-specific templates.)
The following Visual C++ general projects are available in Visual Studio .NET:
This template creates an MFC-based DLL project that can be integrated into VS.NET to create a custom wizard. (See Chapter 9 for information about other ways to create custom wizards for VS.NET.)
This template creates a DLL that can be used in SQL Server as an extended stored procedure.
This creates a project that will run nmake to build your application rather than using the normal VS.NET build mechanism. This can be useful if your existing project infrastructure relies heavily on traditional makefiles, and you do not want to introduce devenv.exe into your automated build process.