Skip to content
This repository was archived by the owner on Jun 8, 2024. It is now read-only.

Commit 0fd9883

Browse files
authored
Feature/nuget (#4)
* gate badge removed * added exception comments * added pr trigger to pipeline * wip nuget package pack * nuget pipeline completed * fixed comment warnings * working directory for push command
1 parent 9a87993 commit 0fd9883

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.azuredevops/workflows/build.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ steps:
8484
inputs:
8585
command: pack
8686
arguments: --no-build -c $(buildConfiguration) --version-suffix $(versionSuffix)
87-
packagesToPack: src/**/*.csproj
87+
packagesToPack: src/**/*.csproj
8888
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')))
8989

9090
- bash: |
@@ -94,4 +94,5 @@ steps:
9494
env:
9595
NUGET_KEY: $(nugetKey)
9696
displayName: nuget push
97+
workingDirectory: $(Build.ArtifactStagingDirectory)
9798
condition: and(succeeded(), not(eq(variables['build.reason'], 'PullRequest')))

.vscode/settings.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"editor.formatOnType": true,
3-
"yaml.schemas": {
4-
"https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/master/service-schema.json": "./src/DotnetEnvironment/.azuredevops/workflows/build.yaml"
5-
}
2+
"editor.formatOnType": true
63
}

0 commit comments

Comments
 (0)