Cmd builder similar to visual studios

1
Hello everyone, I would like to know how I can do that when I click on a button my program compile cs files and more to make an .exe and run like that of the visual studios if someone on how I can do this or know tutorials I would appreciate it if you told me.

    
asked by anonymous 03.08.2016 / 19:15

1 answer

1

Hello, you can run the following command at the system prompt using the CSharp Compiler (CSC.EXE):

csc File.cs 

To learn more, please visit: Command-line Building With csc. exe

I hope I have helped!

    
03.08.2016 / 19:52