Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SunboX/Prism.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Siegel <me@dansiegel.net>2017-05-22 06:34:36 +0300
committerDan Siegel <me@dansiegel.net>2017-05-22 06:34:36 +0300
commit954e1b1e201e065e0b399e4a0d5575ebc2840da2 (patch)
tree0ae969df8ec572d9590c78fb477fe8a6f3723652
parent50b702b8974aec081bfa5cb36aac7b20d8c7ee7e (diff)
fixing constructed nuget pack expression
-rw-r--r--Source/nuspecs/nuget.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/nuspecs/nuget.ps1 b/Source/nuspecs/nuget.ps1
index 0919bba..d77f2c3 100644
--- a/Source/nuspecs/nuget.ps1
+++ b/Source/nuspecs/nuget.ps1
@@ -41,16 +41,16 @@ function ConvertTo-NuGetExpression
$fileVersion = $uwpVersion
}
- $expression = ".\$($nugetFileName) pack $($nuspecPath) -outputdirectory $($nugetOutputDirectory) -Prop version=$($fileVersion) -Prop coreVersion=$($fileVersion) -Prop releaseNotes=$($releaseNotesUri)"
+ $expression = ".\$($nugetFileName) pack $($nuspecPath) -outputdirectory $($nugetOutputDirectory) -Prop version=$($fileVersion) -Prop coreVersion=$($fileVersion) -Prop releaseNotes=$($releaseNotesUri)$fileVersion"
if($wpfVersion)
{
- $expression = "$expression -Prop wpfVersion=$($wpfFileVersion)"
+ $expression = "$expression -Prop wpfVersion=$($wpfVersion)"
}
if($uwpVersion)
{
- $expression = "$expression -Prop uwpVersion=$($uwpFileVersion)"
+ $expression = "$expression -Prop uwpVersion=$($uwpVersion)"
}
Write-Host "Finished Expression: $expression"