Create a standalone .exe file

I have a console application created in visual studio 2010.

When I actually create the project, I get the .exe file in \ bin \ Debug \ MyProj.exe.

When I insert and run this .exe from another place, it expects other files as well.

Any thoughts how I can do this as a standalone exe file.

+4
source share
2 answers
  • There must be a different DLL in the Debug library. You need those to run exe.

  • If there is no DLL, make sure you set the Copy Local property of the required links to True and build it again.

  • , . , DLL . .

+1

DLL, .

exe, - .net dll #.exe. (, DLL .Net-)

: , , ClickOnce. - Java Web start - , Windows Logo Microsoft .

+1

All Articles