[NUI] Add VS Code setting files for Ubuntu (#1879)
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 3 Aug 2020 11:48:23 +0000 (20:48 +0900)
committerGitHub <noreply@github.com>
Mon, 3 Aug 2020 11:48:23 +0000 (20:48 +0900)
test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/launch.json [new file with mode: 0644]
test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/tasks.json [new file with mode: 0644]
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Tizen.NUI.Samples.code-workspace [new file with mode: 0644]

diff --git a/test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/launch.json b/test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/launch.json
new file mode 100644 (file)
index 0000000..166d61f
--- /dev/null
@@ -0,0 +1,19 @@
+{
+    // Use IntelliSense to learn about possible attributes.
+    // Hover to view descriptions of existing attributes.
+    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+    "version": "0.2.0",
+    "configurations": [
+        {
+            "name": ".NET Core Launch (console)",
+            "type": "coreclr",
+            "request": "launch",
+            "preLaunchTask": "build",
+            "program": "${workspaceFolder}/bin/Debug/netcoreapp2.0/Tizen.NUI.Samples.dll",
+            "args": [],
+            "cwd": "${workspaceFolder}",
+            "console": "internalConsole",
+            "stopAtEntry": false
+        }
+    ]
+}
diff --git a/test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/tasks.json b/test/Tizen.NUI.Samples/Tizen.NUI.Samples/.vscode/tasks.json
new file mode 100644 (file)
index 0000000..4734f5d
--- /dev/null
@@ -0,0 +1,42 @@
+{
+    "version": "2.0.0",
+    "tasks": [
+        {
+            "label": "build",
+            "command": "dotnet",
+            "type": "process",
+            "args": [
+                "build",
+                "${workspaceFolder}/Tizen.NUI.Samples.csproj",
+                "/property:GenerateFullPaths=true",
+                "/consoleloggerparameters:NoSummary"
+            ],
+            "problemMatcher": "$msCompile"
+        },
+        {
+            "label": "publish",
+            "command": "dotnet",
+            "type": "process",
+            "args": [
+                "publish",
+                "${workspaceFolder}/Tizen.NUI.Samples.csproj",
+                "/property:GenerateFullPaths=true",
+                "/consoleloggerparameters:NoSummary"
+            ],
+            "problemMatcher": "$msCompile"
+        },
+        {
+            "label": "watch",
+            "command": "dotnet",
+            "type": "process",
+            "args": [
+                "watch",
+                "run",
+                "${workspaceFolder}/Tizen.NUI.Samples.csproj",
+                "/property:GenerateFullPaths=true",
+                "/consoleloggerparameters:NoSummary"
+            ],
+            "problemMatcher": "$msCompile"
+        }
+    ]
+}
diff --git a/test/Tizen.NUI.Samples/Tizen.NUI.Samples/Tizen.NUI.Samples.code-workspace b/test/Tizen.NUI.Samples/Tizen.NUI.Samples/Tizen.NUI.Samples.code-workspace
new file mode 100644 (file)
index 0000000..97b9e01
--- /dev/null
@@ -0,0 +1,11 @@
+{
+       "folders": [
+               {
+                       "path": "."
+               },
+               {
+                       "path": "../../../src/Tizen.NUI"
+               }
+       ],
+       "settings": {}
+}