Reputation: 191
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
Upvotes: 3
Views: 7737
Reputation: 191
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-=
Upvotes: 0
Reputation: 15976
build the exec program, make sure you include all the needed libraries. Then you can use installcreator and create simple setup program.
Upvotes: 1
Reputation: 37668
You can only publish Web projects. If you want an installer package for a console application, you will need to create a setup project.
Upvotes: 1