Skip to content

Commit

Permalink
3.3.0
Browse files Browse the repository at this point in the history
Beta release
  • Loading branch information
Micke-K committed Oct 17, 2021
1 parent 5976b0b commit 4add878
Show file tree
Hide file tree
Showing 18 changed files with 959 additions and 107 deletions.
Binary file modified CloudAPIPowerShellManagement.psd1
Binary file not shown.
16 changes: 15 additions & 1 deletion CloudAPIPowerShellManagement.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ function Initialize-CloudAPIManagement
[string]
$View = "",
[switch]
$ShowConsoleWindow
$ShowConsoleWindow,
[switch]
$JSonSettings,
[string]
$JSonFile
)

$global:wpfNS = "xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'"
Expand Down Expand Up @@ -99,6 +103,16 @@ function Initialize-CloudAPIManagement
Hide-Console
}

if($JSonSettings -eq $true)
{
$global:UseJSonSettings = $true
$global:JSonSettingFile = $JSonFile
}
else
{
$global:UseJSonSettings = $false
}

$global:txtSplashText.Text = "Unblock files"
[System.Windows.Forms.Application]::DoEvents()
Unblock-AllFiles $PSScriptRoot
Expand Down
Loading

0 comments on commit 4add878

Please sign in to comment.