views:

1810

answers:

4

I'm working on a small console application in Visual Studio C++ 2008 and would like to make an installer that I can distribute to a few friends to test the application. I recall a publish option being under the build menu, but it is not there now. Could I somehow have turned this feature off?

Is there a simple way to publish such that my application will be relatively independent of Windows Version?

Thanks,

Nerf42

+1  A: 

You can only publish Web projects. If you want an installer package for a console application, you will need to create a setup project.

cdonner
+2  A: 

Deploying Your Program (C++)

Mitch Wheat
A: 

build the exec program, make sure you include all the needed libraries. Then you can use installcreator and create simple setup program.

Omar Abid
A: 

I found my error: Publish is available for Visual Studio C# projects, Visual Studio C++ projects have no such option.

Thanks to all who answered.

=-N42-=

Nerf42