11 lines
341 B
YAML
11 lines
341 B
YAML
|
language: csharp
|
||
|
solution: csbot.sln
|
||
|
mono:
|
||
|
- latest
|
||
|
install:
|
||
|
- nuget restore csbot.sln
|
||
|
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
|
||
|
script:
|
||
|
- xbuild /p:Configuration=Release csbot.sln
|
||
|
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe ./csbotTests/bin/Release/csbotTests.dll
|