File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 4
4
RootModule = ' PSModuleDevelopment.psm1'
5
5
6
6
# Version number of this module.
7
- ModuleVersion = ' 2.2.5.26 '
7
+ ModuleVersion = ' 2.2.5.27 '
8
8
9
9
# ID used to uniquely identify this module
10
10
GUID = ' 37dd5fce-e7b5-4d57-ac37-832055ce49d6'
Original file line number Diff line number Diff line change 1
1
$script :PSModuleRoot = $PSScriptRoot
2
- $script :PSModuleVersion = " 2.2.5.26 "
2
+ $script :PSModuleVersion = " 2.2.5.27 "
3
3
4
4
$script :doDotSource = $false
5
5
if (Get-PSFConfigValue - FullName PSModuleDevelopment.Import.DoDotSource) { $script :doDotSource = $true }
Original file line number Diff line number Diff line change 1
1
# Changelog
2
- ## 2.2.5.26 (September 06th, 2018)
2
+ ## 2.2.5.27 (September 08th, 2018)
3
+ - Fix: Fixes in the build task
4
+
5
+ ## 2.2.5.26 (September 08th, 2018)
3
6
- New: Command Read-PSMDScript (Alias: parse)
4
7
- New: Command Set-PSMDEncoding
5
8
- New: Template PSFTests - Default module tests
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Copy-Item -Path "$($templateBuild.FullName)\output\*" -Destination "$($item.Full
28
28
if ($env: BUILD_BUILDURI -like " vstfs*" )
29
29
{
30
30
Write-PSFMessage - Level Host - Message " Publishing to gallery"
31
- if ($WhatIf -or -not $ApiKey ) { Publish-Module - Path " $ ( $env: SYSTEM_DEFAULTWORKINGDIRECTORY ) \PSModuleDevelopment" - NuGetApiKey $ApiKey - Force - WhatIf }
32
- else { Publish-Module - Path " $ ( $env: SYSTEM_DEFAULTWORKINGDIRECTORY ) \PSModuleDevelopment" - NuGetApiKey $ApiKey - Force }
31
+ if ($WhatIf -or -not $ApiKey ) { Publish-Module - Path " $ ( $item .FullName ) \PSModuleDevelopment" - NuGetApiKey $ApiKey - Force - WhatIf }
32
+ else { Publish-Module - Path " $ ( $item .FullName ) \PSModuleDevelopment" - NuGetApiKey $ApiKey - Force }
33
33
}
34
34
else { Write-PSFMessage - Level Host - Message " Skipping publish to gallery" }
You can’t perform that action at this time.
0 commit comments