Skip to content

Commit ceea98f

Browse files
authored
Fixes NuGet package creation output path (#3911)
Changes the NuGet package creation to output to the current directory instead of the default location. This resolves issues with the build script not finding the created packages in the expected location. Removes unused Azure pipeline YAML file.
1 parent b655e99 commit ceea98f

File tree

2 files changed

+1
-25
lines changed

2 files changed

+1
-25
lines changed

build/BuildNugets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function New-DotNetPackage {
1616

1717
$ProjectPath = Resolve-Path $ProjectPath
1818
Write-Host "Packing $ProjectPath with version $Version"
19-
dotnet pack "$ProjectPath" -c $configuration -p:PackageVersion="$Version" -p:Copyright="$copyright" --no-build
19+
dotnet pack "$ProjectPath" -c $configuration -p:PackageVersion="$Version" -p:Copyright="$copyright" --no-build -o "."
2020
}
2121

2222
Push-Location "$(Join-Path $PSScriptRoot "..")"

build/azure-pipelines-wiki.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)