aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/.vscode
diff options
context:
space:
mode:
authorAryadev Chavali <aryadevchavali1@gmail.com>2019-02-03 23:31:33 +0000
committerAryadev Chavali <aryadevchavali1@gmail.com>2019-02-03 23:31:33 +0000
commit98452f494c6284ca8d7e7f83421d838e475e0f1a (patch)
tree70f98daa47c77aa7a1c0c29dd62b7a14458716fb /Aggregator/.vscode
parentb8597112037c224ca78193f42bc16ecfca363855 (diff)
downloadnewsaggregator-98452f494c6284ca8d7e7f83421d838e475e0f1a.tar.gz
newsaggregator-98452f494c6284ca8d7e7f83421d838e475e0f1a.tar.bz2
newsaggregator-98452f494c6284ca8d7e7f83421d838e475e0f1a.zip
Added vscode launch and default tasks for development
Diffstat (limited to 'Aggregator/.vscode')
-rw-r--r--Aggregator/.vscode/launch.json28
-rw-r--r--Aggregator/.vscode/tasks.json31
2 files changed, 59 insertions, 0 deletions
diff --git a/Aggregator/.vscode/launch.json b/Aggregator/.vscode/launch.json
new file mode 100644
index 0000000..f0c7d88
--- /dev/null
+++ b/Aggregator/.vscode/launch.json
@@ -0,0 +1,28 @@
+{
+ // Use IntelliSense to find out which attributes exist for C# debugging
+ // Use hover for the description of the existing attributes
+ // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": ".NET Core Launch (console)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ // If you have changed target frameworks, make sure to update the program path.
+ "program": "${workspaceFolder}/Tests/bin/Debug/netcoreapp2.1/Tests.dll",
+ "args": [],
+ "cwd": "${workspaceFolder}/Tests",
+ // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
+ "console": "internalConsole",
+ "stopAtEntry": false,
+ "internalConsoleOptions": "openOnSessionStart"
+ },
+ {
+ "name": ".NET Core Attach",
+ "type": "coreclr",
+ "request": "attach",
+ "processId": "${command:pickProcess}"
+ }
+ ,]
+} \ No newline at end of file
diff --git a/Aggregator/.vscode/tasks.json b/Aggregator/.vscode/tasks.json
new file mode 100644
index 0000000..2be1bf2
--- /dev/null
+++ b/Aggregator/.vscode/tasks.json
@@ -0,0 +1,31 @@
+{
+ "version": "2.0.0",
+ "tasks": [{
+ "label": "build",
+ "command": "dotnet",
+ "type": "process",
+ "args": [
+ "build",
+ "${workspaceFolder}/Tests/Tests.csproj"
+ ],
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "problemMatcher": "$msCompile"
+ },
+ {
+ "label": "test",
+ "type": "shell",
+ "command": "dotnet",
+ "args": [
+ "test"
+ ],
+ "group": {
+ "kind": "test",
+ "isDefault": true
+ },
+ "problemMatcher": "$msCompile"
+ }
+ ]
+} \ No newline at end of file