Skip to content

Commit

Permalink
Inject correct copyright parameter into *.nuspec files (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaihenriksen authored Sep 12, 2024
1 parent f8e1423 commit a1f2fd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/BuildNugets.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 "..")"
Expand Down

0 comments on commit a1f2fd8

Please sign in to comment.