From a1f2fd859db88cb4be780f90f2ef890a159c455d Mon Sep 17 00:00:00 2001 From: Nicolai Henriksen Date: Thu, 12 Sep 2024 17:43:26 +0200 Subject: [PATCH] Inject correct copyright parameter into *.nuspec files (#3668) --- build/BuildNugets.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/BuildNugets.ps1 b/build/BuildNugets.ps1 index 468fd29c9e..c59e7d9816 100644 --- a/build/BuildNugets.ps1 +++ b/build/BuildNugets.ps1 @@ -5,7 +5,7 @@ param( ) $year = [System.DateTime]::Now.ToString("yyyy") -$copywrite = "Copyright $year James Willock/Mulholland Software Ltd" +$copyright = "Copyright $year James Willock/Mulholland Software Ltd" $configuration = "Release" function Update-Icon { @@ -59,7 +59,7 @@ function New-Nuget { $NuSpecPath = Resolve-Path $NuSpecPath Update-Icon "$NuSpecPath" - nuget pack "$NuSpecPath" -version "$Version" -Properties "Configuration=$configuration;Copywrite=$copywrite" + nuget pack "$NuSpecPath" -version "$Version" -Properties "Configuration=$configuration;Copyright=$copyright" } Push-Location "$(Join-Path $PSScriptRoot "..")"