Build menu in Visual basic 2010?

Started by
3 comments, last by nobodynews 14 years, 4 months ago
I have Visual basic 2010. And I recently designed a console app. As I want to save it as a .exe for my friends to run it, there is no bar for that. I can not use any other version of Visual basic because, My computer won't install nay other framework than 4.1 Beta. Someone please help.
Advertisement
Moved to For Beginners.

Wielder of the Sacred Wands
[Work - ArenaNet] [Epoch Language] [Scribblings]

Assuming your friends have the appropriate framework/dependencies installed, and you're not depending on any other components, simply give them the .exe produced by the build (look in /bin/Release in your project directory). Do not give them the Debug build.

You can alternatively use ClickOnce to prepare a deployment that packages up all your dependencies, et cetera, is a nice neat package. Ask Google or the MSDN for more information about ClickOnce. You can access ClickOnce via the Build menu (it's the "Publish whateveryourprojectis..." command.
bin/release/? Where is that located exactly?
Quote:Original post by jpetrie
(look in /bin/Release in your project directory)
Emphasis added.

C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) , Part 3 (decltype) | Write Games | Fix Your Timestep!

This topic is closed to new replies.

Advertisement