diff .vscode/tasks.json @ 267:6b3e5c48131b v3

Working on Unity xml configuration
author cin
date Fri, 20 Apr 2018 19:05:12 +0300
parents fa6cbf4d8841
children
line wrap: on
line diff
--- a/.vscode/tasks.json	Mon Apr 16 19:45:18 2018 +0300
+++ b/.vscode/tasks.json	Fri Apr 20 19:05:12 2018 +0300
@@ -2,26 +2,20 @@
     // See https://go.microsoft.com/fwlink/?LinkId=733558
     // for the documentation about the tasks.json format
     "version": "0.1.0",
-    "command": "msbuild",
+    "command": "dotnet",
     "args": [
-        // Ask msbuild to generate full paths for file names.
-        "/property:GenerateFullPaths=true"
     ],
-    "taskSelector": "/t:",
     "showOutput": "silent",
     "tasks": [
         {
             "taskName": "build",
-            "suppressTaskName": true,
             // Show the output window only if unrecognized errors occur.
             "showOutput": "always",
             // Use the standard MS compiler pattern to detect errors, warnings and infos
             "problemMatcher": "$msCompile",
 
             "args" : [
-                "/t:restore;build",
-                "/p:Configuration=DebugMono",
-                "Pallada.PoiskAvia.mono.sln"
+                "/p:Configuration=Debug"
             ]
         },
         {
@@ -29,27 +23,15 @@
             // Show the output window only if unrecognized errors occur.
             "showOutput": "always",
             // Use the standard MS compiler pattern to detect errors, warnings and infos
-            "problemMatcher": "$msCompile",
-
-            "args" : [
-                "/p:Configuration=DebugMono",
-                "Pallada.PoiskAvia.mono.sln"
-            ]
+            "problemMatcher": "$msCompile"
         },
         {
-            "taskName": "runtests",
+            "taskName": "test",
             "isTestCommand": true,
-            "suppressTaskName": true,
             // Show the output window only if unrecognized errors occur.
             "showOutput": "always",
             // Use the standard MS compiler pattern to detect errors, warnings and infos
-            "problemMatcher": "$msCompile",
-
-            "args" : [
-                "/t:runtests",
-                "/p:Configuration=DebugMono",
-                "Pallada.PoiskAvia.mono.sln"
-            ]
+            "problemMatcher": "$msCompile"
         }
     ]
 }
\ No newline at end of file