Online Exe Builder [closed]
We don’t allow questions seeking recommendations for books, t开发者_StackOverflowools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionI generally use Visual Studio for creating Windows exe in C# .NET 2.0 / 3.5 But right now I dont have VS or any IDE / Compiler to build exe on my system and suppose I don't have admin rights to install them Tell me please, how Can I build an exe online, something like coderun.com or codepad.org But these sites are not helpful to me, as I need to build exe & download to my PC and use it.
I need some online solution to build EXE's online & run them on my PC.(Windows XP SP3)
The .NET Framework which ships with every modern version of Windows (and will probably be installed even on older versions) includes a command-line C# compiler called csc.exe
. You can build your exe with this.
Here are some instructions for using it:
- MSDN: Command-line Building With csc.exe
The csc.exe executable is usually located in the
Microsoft.NET\Framework\<version>
folder under the system directory.
Also, if you have the full version of .NET 4.0 (not client profile), you will probably have msbuild.exe in the same place. This is even easier to use, as you can simply pass it a Visual Studio solution file and it will build the whole solution for you, the same way Visual Studio does (apart from some special project types like installers).
There are some related sites, which may help you ..
http://www.ideone.com
http://www.compilers.net
http://www.chami.com/html-kit/devtools
http://www.icsharpcode.net
http://www.recursionsw.com
http://eli-project.sourceforge.net
http://www.openwatcom.com/index.php/Main_Page
http://ccache.samba.org/
http://codepad.org/
http://llvm.cs.uiuc.edu/DPJ/Home.html
http://www.coderun.com/
http://www.db4o.com/
http://docs.codehaus.org/display/JANINO/Home
http://xacc.wordpress.com/
精彩评论