creating a stand alone .exe

hi,
i have created this windows application.Can u tell me how can i create a stand alone exe of my windows application (this is my first Windows application :-) )so that I can work with my application without going to VS.NET 

Varun


Answer this question

creating a stand alone .exe

  • POV Dev

    Sure. You have to compile it and run it. Without VS.NET you'll need to use one of the command-line compilers included with .NET, either csc.exe for C# or vbc.exe for VB.NET. Which language are you using

    How you compile it depends on what resources you are using in the app. So let's start with this. Check out the docs for the compiler you want to use and then we can talk about what switches you need to use.

    Welcome to .NET programming!

    Don

  • creating a stand alone .exe