2025-03-14 21:59:59 -06:00
|
|
|
# mcs
|
|
|
|
|
|
|
|
|
|
> Mono C# Compiler.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://manned.org/mcs>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Compile the specified files:
|
|
|
|
|
|
|
|
|
|
`mcs {{path/to/input_file1.cs path/to/input_file2.cs ...}}`
|
|
|
|
|
|
|
|
|
|
- Specify the output program name:
|
|
|
|
|
|
|
|
|
|
`mcs -out:{{path/to/file.exe}} {{path/to/input_file1.cs path/to/input_file2.cs ...}}`
|
|
|
|
|
|
|
|
|
|
- Specify the output program type:
|
|
|
|
|
|
|
|
|
|
`mcs -target:{{exe|winexe|library|module}} {{path/to/input_file1.cs path/to/input_file2.cs ...}}`
|