Skip to content

Commit

Permalink
stop tagged builds
Browse files Browse the repository at this point in the history
  • Loading branch information
philo committed Sep 24, 2020
1 parent 0789277 commit 85ff0d9
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// 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/Storm.AzureFrontDoorFilter.Tests/bin/Debug/netcoreapp3.1/Storm.AzureFrontDoorFilter.Tests.dll",
"args": [],
"cwd": "${workspaceFolder}/tests/Storm.AzureFrontDoorFilter.Tests",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/tests/Storm.AzureFrontDoorFilter.Tests/Storm.AzureFrontDoorFilter.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/tests/Storm.AzureFrontDoorFilter.Tests/Storm.AzureFrontDoorFilter.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/tests/Storm.AzureFrontDoorFilter.Tests/Storm.AzureFrontDoorFilter.Tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
1 change: 0 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ trigger:
branches:
include:
- master
- refs/tags/*
stages:
- stage: build
displayName: Execute Build
Expand Down

0 comments on commit 85ff0d9

Please sign in to comment.