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
path: root/Source
diff options
context:
space:
mode:
authorDan Siegel <me@dansiegel.net>2017-05-20 05:06:30 +0300
committerDan Siegel <me@dansiegel.net>2017-05-20 05:40:55 +0300
commit10e7daad721f44eb62a968554a8402e72e3b329e (patch)
tree3889860f7aeac3b6e3dbb2a6194b15fe3091bf9c /Source
parentd22db80b5c71f8e52cafadf16a6feecb2a3a0c53 (diff)
fixing missing artifacts
Diffstat (limited to 'Source')
-rw-r--r--Source/nuspecs/nuget.ps15
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/nuspecs/nuget.ps1 b/Source/nuspecs/nuget.ps1
index adec1ce..886385b 100644
--- a/Source/nuspecs/nuget.ps1
+++ b/Source/nuspecs/nuget.ps1
@@ -6,17 +6,22 @@ $releaseNotesUri = 'https://github.com/PrismLibrary/Prism/wiki/Release-Notes-'
$coreFileVersion = '1.0.0'
$nugetFileName = 'nuget.exe'
+
if($solutionPath -like '*PrismLibrary_XF*' -and $configuration -eq 'Release')
{
+ Write-Host "Packing PrismLibrary_XF"
dotnet pack $solutionPath -c $configuration
return
}
if($configuration -eq 'Test' -or $solutionPath -notlike 'PrismLibrary.sln')
{
+ Write-Host "Returning without packing $solutionPath"
return
}
+Write-Host "Packing $solutionPath"
+
function Get-FileVersion
{
[OutputType([string])]