Skip to content

Commit a1f2fd8

Browse files
Inject correct copyright parameter into *.nuspec files (#3668)
1 parent f8e1423 commit a1f2fd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/BuildNugets.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ param(
55
)
66

77
$year = [System.DateTime]::Now.ToString("yyyy")
8-
$copywrite = "Copyright $year James Willock/Mulholland Software Ltd"
8+
$copyright = "Copyright $year James Willock/Mulholland Software Ltd"
99
$configuration = "Release"
1010

1111
function Update-Icon {
@@ -59,7 +59,7 @@ function New-Nuget {
5959

6060
$NuSpecPath = Resolve-Path $NuSpecPath
6161
Update-Icon "$NuSpecPath"
62-
nuget pack "$NuSpecPath" -version "$Version" -Properties "Configuration=$configuration;Copywrite=$copywrite"
62+
nuget pack "$NuSpecPath" -version "$Version" -Properties "Configuration=$configuration;Copyright=$copyright"
6363
}
6464

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

0 commit comments

Comments
 (0)