Click here to Skip to main content
15,888,802 members
Articles / Programming Languages / Javascript

A Visual Studio Wizard to add more project configurations

Rate me:
Please Sign up or sign in to vote.
4.78/5 (7 votes)
22 May 2011CPOL14 min read 30.7K   504   27  
This article explains how to automate Visual C++ project configurations using the Visual Studio wizard engine.
// AppUsingProject1.h : main header file for the PROJECT_NAME application
//

#pragma once

#ifndef __AFXWIN_H__
	#error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h"		// main symbols


// CAppUsingProject1App:
// See AppUsingProject1.cpp for the implementation of this class
//

class CAppUsingProject1App : public CWinApp
{
public:
	CAppUsingProject1App();

// Overrides
	public:
	virtual BOOL InitInstance();

// Implementation

	DECLARE_MESSAGE_MAP()
};

extern CAppUsingProject1App theApp;

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
As a professional software developer with more than 6 years experience, I've involved in a variety of projects in many areas. I started with developing desktop applications for Windows 95 (both 16-bit and 32-bit programs), moved to developing client/server applications using Windows NT technologies, and now I'm up to my ears working with .NET development.

Comments and Discussions