From fe29987afd014527e5d98cf344f02933b5d5a83e Mon Sep 17 00:00:00 2001 From: Kevin Bost Date: Sat, 30 Aug 2025 22:50:51 -0700 Subject: [PATCH] Fixes NuGet package creation output path 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. --- build/BuildNugets.ps1 | 2 +- build/azure-pipelines-wiki.yml | 24 ------------------------ 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 build/azure-pipelines-wiki.yml diff --git a/build/BuildNugets.ps1 b/build/BuildNugets.ps1 index 766158b4f1..788be6d70d 100644 --- a/build/BuildNugets.ps1 +++ b/build/BuildNugets.ps1 @@ -16,7 +16,7 @@ function New-DotNetPackage { $ProjectPath = Resolve-Path $ProjectPath Write-Host "Packing $ProjectPath with version $Version" - dotnet pack "$ProjectPath" -c $configuration -p:PackageVersion="$Version" -p:Copyright="$copyright" --no-build + dotnet pack "$ProjectPath" -c $configuration -p:PackageVersion="$Version" -p:Copyright="$copyright" --no-build -o "." } Push-Location "$(Join-Path $PSScriptRoot "..")" diff --git a/build/azure-pipelines-wiki.yml b/build/azure-pipelines-wiki.yml deleted file mode 100644 index 3f98fae578..0000000000 --- a/build/azure-pipelines-wiki.yml +++ /dev/null @@ -1,24 +0,0 @@ -trigger: none - -pr: none - -pool: - vmImage: "VS2017-Win2016" - -steps: - - task: PowerShell@2 - inputs: - filePath: 'build\\GenerateThemesWikiMarkdown.ps1' - - - task: WikiUpdaterTask@1 - inputs: - repo: "github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit.wiki.git" - filename: "ControlStyleList.md" - dataIsFile: true - sourceFile: 'build\\ControlStyleList.md' - message: "Automatic update of ControlStyleList.md from Azure pipeline" - gitname: "Azure Dev Ops" - gitemail: "azure@materialdesigninxaml.net" - user: "$(GitHubUser)" - password: "$(GitHubPat)" - localpath: '$(System.DefaultWorkingDirectory)\\Scripts\\Wiki'