소스 검색

add xunit config

Oren Novotny 9 년 전
부모
커밋
1784a985c4
2개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      Rx.NET/Source/Tests.System.Reactive/project.json
  2. 4 0
      Rx.NET/Source/Tests.System.Reactive/xunit.runner.json

+ 4 - 1
Rx.NET/Source/Tests.System.Reactive/project.json

@@ -16,7 +16,10 @@
     "nowarn": ["CS0618"],
     "keyFile": "../35MSSharedLib1024.snk",
     "publicSign": true,
-    "define": ["SIGNED"]
+    "define": ["SIGNED"],
+    "copyToOutput": {
+            "include": [ "xunit.runner.json" ]
+        }
   },
   "configurations": {
     "ReleaseDelaySigned": {

+ 4 - 0
Rx.NET/Source/Tests.System.Reactive/xunit.runner.json

@@ -0,0 +1,4 @@
+{
+    "diagnosticMessages": true,
+    "methodDisplay": "classAndMethod"
+}