This repository was archived by the owner on Aug 7, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ if ($RemoveExistingCerts) {
30
30
Remove-SqlColumnEncryptionKey - Name $_.Name - InputObject $smoDatabase
31
31
}
32
32
Remove-SqlColumnMasterKey - Name $MasterKeySQLName - InputObject $smoDatabase
33
- ls Cert:\CurrentUser\My | where subject -eq $MasterKeyDNSName | rm
33
+ Get-ChildItem Cert:\CurrentUser\My | Where-Object subject -eq $MasterKeyDNSName | Remove-Item
34
34
}
35
35
36
36
$cert = New-SelfSignedCertificate `
Original file line number Diff line number Diff line change @@ -16,11 +16,10 @@ environment:
16
16
SQL_SERVER_USER : AlwaysEncryptedOwner
17
17
SQL_SERVER_PASSWORD : 7aO!z@xUu!4r6EvD#D&l$sz6&h^rhxL6fzAHMpnOga@LO*WdsEdpfh4^Egtl
18
18
SQL_SERVER_DATABASE : AlwaysEncryptedSample
19
- SQL_SERVER_BLANK_DATABASE : BlankDatabase
20
19
SQL_SERVER_BACKUP_FILE : $(SQL_SERVER_DATABASE).bak
21
20
SQL_SERVER_DACPAC : $(SQL_SERVER_DATABASE).dacpac
22
21
SQL_SERVER_GENERATED_SCHEMA : $(SQL_SERVER_DATABASE).sql
23
- SQL_SERVER_CONNECTION_STRING : " Data Source=$(SQL_SERVER_INSTANCE);Initial Catalog=$(SQL_SERVER_DATABASE);UID=$(SQL_SERVER_USER);PWD=$(SQL_SERVER_PASSWORD);Application Name=AppVeyor CI Process;Column Encryption Setting=enabled "
22
+ SQL_SERVER_CONNECTION_STRING : " Data Source=$(SQL_SERVER_INSTANCE);Initial Catalog=$(SQL_SERVER_DATABASE);UID=$(SQL_SERVER_USER);PWD=$(SQL_SERVER_PASSWORD);Application Name=AppVeyor CI Process;Column Encryption Setting=Enabled "
24
23
SQL_SERVER_VERIFICATION_LOG : $(SQL_SERVER_DATABASE).verification.log
25
24
matrix :
26
25
- {}
You can’t perform that action at this time.
0 commit comments