Skip to content

Commit

Permalink
Make that syntax work with nuget
Browse files Browse the repository at this point in the history
  • Loading branch information
serialseb committed Mar 6, 2017
1 parent b82aae3 commit e6f2743
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build/funcs/Create-Package.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,11 @@ write-host "Release notes: $releaseNotes"
write-host "License: $authors"
write-host "Authors: $licenseUrl"

nuget pack $nuspecPath.nuspec -Properties releaseNotes="$releaseNotes";authors="$authors";licenseUrl="$licenseUrl";projectUrl="$projectUrl";description="$description" -version $env:NUGET_VERSION -basepath $env:APPVEYOR_BUILD_FOLDER/src/$env:SEB_PROJECT_NAME/
& nuget pack $nuspecPath.nuspec -Properties releaseNotes="$releaseNotes" `
-Properties "authors=$authors" `
-Properties "licenseUrl=$licenseUrl" `
-Properties "projectUrl=$projectUrl" `
-Properties "description=$description" `
-version $env:NUGET_VERSION `
-basepath $env:APPVEYOR_BUILD_FOLDER/src/$env:SEB_PROJECT_NAME/
Push-AppveyorArtifact *.nupkg

0 comments on commit e6f2743

Please sign in to comment.