File tree 3 files changed +10
-62
lines changed
Hosting/Server.IntegrationTesting/src/Deployers/RemoteWindowsDeployer
3 files changed +10
-62
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
# Obviously, don't actually use this to produce production certs
4
4
#
5
5
6
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute (
7
+ ' PSAvoidUsingConvertToSecureStringWithPlainText' ,
8
+ ' ' ,
9
+ Justification= ' this is creating a certificate for local testing' )]
6
10
param (
7
11
[Parameter (Mandatory = $true )]
8
12
$OutFile
Original file line number Diff line number Diff line change 1
- [CmdletBinding ()]
1
+ [Diagnostics.CodeAnalysis.SuppressMessageAttribute (
2
+ ' PSAvoidUsingConvertToSecureStringWithPlainText' ,
3
+ ' ' ,
4
+ Justification= ' $accountPassword is a script parameter so it needs to be plain-text' )]
5
+ [CmdletBinding ()]
2
6
param (
3
7
[Parameter (Mandatory = $true )]
4
8
[string ]$serverName ,
@@ -64,4 +68,4 @@ if($remoteResult.Length > 0)
64
68
{
65
69
$finalExitCode = $remoteResult [$remoteResult.Length - 1 ]
66
70
exit $finalExitCode
67
- }
71
+ }
You can’t perform that action at this time.
0 commit comments