From e6f27434614a68f236f8897e5faa547bb3aca4ac Mon Sep 17 00:00:00 2001 From: Sebastien Lambla Date: Mon, 6 Mar 2017 21:14:10 +0100 Subject: [PATCH] Make that syntax work with nuget --- build/funcs/Create-Package.ps1 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/funcs/Create-Package.ps1 b/build/funcs/Create-Package.ps1 index 17bda38..cceb827 100644 --- a/build/funcs/Create-Package.ps1 +++ b/build/funcs/Create-Package.ps1 @@ -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 \ No newline at end of file