We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627d755 commit e9cffbdCopy full SHA for e9cffbd
archive/c/c-sharp/testinfo.yml
@@ -3,7 +3,10 @@ folder:
3
naming: "pascal"
4
5
container:
6
- image: "mono"
7
- tag: "5.18" # Cannot use slim because it does not contain mcs for compilation
8
- build: "mcs -reference:System.Numerics {{ source.name}}{{ source.extension }}"
9
- cmd: "mono {{ source.name }}.exe"
+ image: "mcr.microsoft.com/dotnet/sdk"
+ tag: "9.0"
+ build: |
+ bash -c "dotnet new console --language 'C#' && \
10
+ mv {{ source.name }}{{ source.extension }} Program.cs && \
11
+ dotnet build --sc"
12
+ cmd: "dotnet run --sc --no-restore"
0 commit comments