Skip to content

Commit

Permalink
Merge pull request #436 from Microsoft/dev
Browse files Browse the repository at this point in the history
0.6.0.11
  • Loading branch information
freddydk committed Apr 24, 2019
2 parents a51731b + 45a8329 commit a00932b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion AppHandling/Compile-AppInNavContainer.ps1
Expand Up @@ -59,7 +59,11 @@ function Compile-AppInNavContainer {

$startTime = [DateTime]::Now

[System.Version]$platformversion = Get-NavContainerPlatformversion -containerOrImageName $containerName
$platform = Get-NavContainerPlatformversion -containerOrImageName $containerName
if ("$platform" -eq "") {
$platform = (Get-NavContainerNavVersion -containerOrImageName $containerName).Split('-')[0]
}
[System.Version]$platformversion = $platform

$containerProjectFolder = Get-NavContainerPath -containerName $containerName -path $appProjectFolder
if ("$containerProjectFolder" -eq "") {
Expand Down
6 changes: 4 additions & 2 deletions NavContainerHelper.psd1
Expand Up @@ -12,7 +12,7 @@
RootModule = 'NavContainerHelper.psm1'

# Version number of this module.
ModuleVersion = '0.6.0.10'
ModuleVersion = '0.6.0.11'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -159,8 +159,10 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '0.6.0.10
ReleaseNotes = '0.6.0.11
Regression: Compile-AppInNavContainer should not add defaulting for AssemblyProbingPaths for versions prior to 13.x
0.6.0.10
Test-NavContainer and Get-NavContainerId should now be case insensitive
Get-NavContainers now use a single docker statement instead of multiple calls
Include WindowsPowerShellScripts\WebSearch\TransitionMenuSuiteObjectsForSearch.psm1 if it exists when extracting files from container
Expand Down
4 changes: 3 additions & 1 deletion ReleaseNotes.txt
@@ -1,5 +1,7 @@
0.6.0.10
0.6.0.11
Regression: Compile-AppInNavContainer should not add defaulting for AssemblyProbingPaths for versions prior to 13.x

0.6.0.10
Test-NavContainer and Get-NavContainerId should now be case insensitive
Get-NavContainers now use a single docker statement instead of multiple calls
Include WindowsPowerShellScripts\WebSearch\TransitionMenuSuiteObjectsForSearch.psm1 if it exists when extracting files from container
Expand Down

0 comments on commit a00932b

Please sign in to comment.