We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9f750 commit baf7873Copy full SHA for baf7873
DevInstall.ps1
@@ -1,6 +1,9 @@
1
#!/usr/bin/env pwsh
2
3
-param ([Parameter(Mandatory)][SecureString] $CertPassword)
+param (
4
+ [Parameter(Mandatory)][SecureString] $CertPassword,
5
+ $CertPath = "$env:USERPROFILE\Documents\Certificates\EcsactDev.pfx"
6
+)
7
8
$ErrorActionPreference = 'Stop'
9
@@ -15,6 +18,6 @@ $GitTagSplit = $GitTag.Split(".")
15
18
$IncrementedVersion = $GitTagSplit[0] + "." + $GitTagSplit[1] + "." + (([int]$GitTagSplit[2]) + 1)
16
19
17
20
. .\CopyDist.ps1
-. .\CreateMsix.ps1 -Version $IncrementedVersion -CertPassword $CertPassword
21
+. .\CreateMsix.ps1 -Version $IncrementedVersion -CertPassword $CertPassword -CertPath $CertPath
22
23
Add-AppPackage -Path $MsixPath
0 commit comments