瀏覽代碼

Custom appveyor test script

Nick Babcock 7 年之前
父節點
當前提交
3f956d51e9
共有 1 個文件被更改,包括 7 次插入10 次删除
  1. 7 10
      appveyor.yml

+ 7 - 10
appveyor.yml

@@ -1,11 +1,8 @@
 image: 'Visual Studio 2017'
-
-configuration:
-  - Release
-
-before_build:
-- cmd: git submodule update --init --recursive
-- cmd: nuget restore
-
-build:
-  project: OhmGraphite.sln
+build: off
+test_script:
+  cmd: |
+      git submodule update --init --recursive
+      nuget restore
+      dotnet build -c Release ./OhmGraphite/OhmGraphite.csproj
+      dotnet test .\OhmGraphite.Test\OhmGraphite.Test.csproj