headermask image

header image

Sample Command Lines

Sample Command Lines
Compiles testFile.cs producing testFile.exe:
csc testFile.cs
Compiles testFile.cs producing testFile.dll:
csc /target:library testFile.cs
Compiles testFile.cs and creates Me.exe:
csc /out: Me.exe testFile.cs
Command to Compile all the C# files in the current directory, defines the DEBUG symbol with optimizations on. The output is testFile.exe:
csc /define: DEBUG /optimize /out: testFile.exe *.cs
Command to Compile all of the C# files in the [...]