diff options
author | crupest <crupest@outlook.com> | 2020-06-02 15:41:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-02 15:41:25 +0800 |
commit | 362317837ab8f1901485ba92685b77ec949c9e49 (patch) | |
tree | d2cebe8625f20a7822ef29f70e8f08d6d5c40647 /.vscode | |
parent | 48b1d6ca1a0e3f1e2d84c62e5879dfb762fb307a (diff) | |
download | timeline-362317837ab8f1901485ba92685b77ec949c9e49.tar.gz timeline-362317837ab8f1901485ba92685b77ec949c9e49.tar.bz2 timeline-362317837ab8f1901485ba92685b77ec949c9e49.zip |
Add Github Actions.
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 41 | ||||
-rw-r--r-- | .vscode/tasks.json | 36 |
2 files changed, 0 insertions, 77 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 74744083..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // 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": "Python: Current File", - "type": "python", - "request": "launch", - "program": "${file}", - "console": "integratedTerminal" - }, - { - "name": ".NET Core Launch (web)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/Timeline/bin/Debug/netcoreapp2.2/Timeline.dll", - "args": [], - "cwd": "${workspaceFolder}/Timeline", - "stopAtEntry": false, - "launchBrowser": { - "enabled": true - }, - "env": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "sourceFileMap": { - "/Views": "${workspaceFolder}/Views" - } - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach", - "processId": "${command:pickProcess}" - } - ] -}
\ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index eeb06c4f..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/Timeline/Timeline.csproj" - ], - "problemMatcher": "$tsc" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/Timeline/Timeline.csproj" - ], - "problemMatcher": "$tsc" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/Timeline/Timeline.csproj" - ], - "problemMatcher": "$tsc" - } - ] -}
\ No newline at end of file |