Reputation: 119
I have a .net project (windows forms) of framework 4.0 @ visual studio 2010. how can i create an .exe file to invoke this project in a PC(of my friend) where i dont have .net visual studio. i want to use this exe file in that pc to use the windows forms there. Looking forward towards your reply.
In short,
Any help appreciated!
Upvotes: 3
Views: 5468
Reputation: 12584
If you build the project in release mode and then look in the projects bin folder you will see a release folder. Your exe will be in here after building. Your exe file should run on your friends computer if they are running windows and have the .NET Framework installed.
Upvotes: 3
Reputation: 2498
simple answer is: right click on the project in solution explorer (top right hand side window) and click 'build', then look for the exe file in ./bin/debug
You may also want to read on Visual Studio basics: http://msdn.microsoft.com/en-us/library/h8w79z10.aspx
Upvotes: 1