On Microsoft Visual C# 2005 express edition beta how can projects be viewed outside of the program?

  • Thread starter Thread starter paulrosenthal
  • Start date Start date
P

paulrosenthal

Hello,

On Microsoft Visual C# 2005 express edition beta I need to view my
program (project I made) outside the program. How do I do this?
 
You should make a "release" version (see the configuration manager). Then
your program (.exe) will be (typically) installed in :

My Documents/Visual
Studio/Projects/[name-of-your-project]/[name-of-your-project]/bin/release/[name-of-your-project].exe

You can just click on that, and your program will execute outside of the
IDE. You could make a shortcut to that executable and click on the
shortcut.
 
Back
Top