You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disallow invoking Run-ALPipeline with keepContainer without specifying credential (#3375)
If `keepContainer` is specified, `credential` must also be specified, as
otherwise the container will be created with a random password and there
will be no way to access it.
throw"If sharedFolder is specified, it must be an existing folder"
486
486
}
487
487
488
+
if($keepContainer-and!$credential) {
489
+
# If keepContainer is specified, credentials must also be specified, as otherwise the container will be created with a random password and there will be no way to access it.
490
+
throw"If keepContainer is specified, you must also specify credentials"
491
+
}
492
+
493
+
if(!$credential) {
494
+
# Create a random password to use, as the container will not be kept after the pipeline finishes.
Issue 3371 Unable to get companyname from Windows Users when running tests
11
+
Disallow invoking Run-ALPipeline with `keepContainer` without specifying credentials to use
11
12
12
13
6.0.6
13
14
Include Microsoft_Business Foundation Test Libraries.app when importing test libraries (and tests)
@@ -26,7 +27,7 @@ Proof of concept support for hosting artifacts as Universal Packages
26
27
Add new function Get-BcNuGetPackageId to get a NuGet Package Id based on publisher, name, id and version
27
28
Issue 3301 Run-AlValidation fails running AppsourceCop "Could not load type 'System.Object' from assembly 'System.Private.CoreLib'
28
29
Give better error message if GitHub CLI, GIT or dotnet is not installed
29
-
Issue 3301 Run-AlValidation fails running AppsourceCop "Could not load type 'System.Object' from assembly 'System.Private.CoreLib' (Regression in 6.0.4)
30
+
Issue 3301 Run-AlValidation fails running AppsourceCop "Could not load type 'System.Object' from assembly 'System.Private.CoreLib' (Regression in 6.0.4)
30
31
Issue 3313 Strange error in Copy-BcEnvironment
31
32
Issue 3318 Download-BcNuGetPackageToFolder fails when no dependencies defined
32
33
Add Stacktrace output to high level functions Download-BcNuGetPackageToFolder and Get-BcNuGetPackage
0 commit comments