浏览代码

Adding configurations for AppVeyor and Travis CI

master
Jan Bernlöhr 9 年前
父节点
当前提交
8507d2a5b0
共有 2 个文件被更改,包括 13 次插入0 次删除
  1. 8
    0
      .travis.yml
  2. 5
    0
      appveyor.yml

+ 8
- 0
.travis.yml 查看文件

@@ -0,0 +1,8 @@
language: csharp
solution: DocX.sln
install:
- nuget restore DocX.sln
- nuget install NUnit.Console -Version 3.4.1 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug DocX.sln
- mono --debug ./testrunner/NUnit.ConsoleRunner.3.4.1/tools/nunit3-console.exe ./UnitTests/bin/Debug/UnitTests.dll

+ 5
- 0
appveyor.yml 查看文件

@@ -0,0 +1,5 @@
before_build:
- nuget restore DocX.sln
build:
project: DocX.sln
verbosity: minimal

正在加载...
取消
保存