15 lines
420 B
Markdown
15 lines
420 B
Markdown
# C# Script Compiler
|
|
Execute .cs files in directory without building the project
|
|
|
|
## Building
|
|
```sh
|
|
dotnet publish CSharpScript -o bin
|
|
```
|
|
|
|
## Usage
|
|
1. copy `CSharpScript.toml.default` to `CSharpScript.toml`
|
|
2. edit config
|
|
3. `./CSharpScript [argumentss_for_your_program]`
|
|
|
|
P.S. If you don't want to ask users to install dotnet runtime, use my [portable mono runtime](https://timerix.ddns.net/git/Timerix/mono-apphost)
|