You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
#!/usr/bin/env pwsh |
|
# Helper script for applying the same user secrets to each project |
|
param ( |
|
[switch]$clear, |
|
[Parameter(ValueFromRemainingArguments = $true, Position=1)] |
|
$cmdArgs |
|
) |
|
|
|
if (!(Test-Path "secrets.json")) { |
|
Write-Warning "No secrets.json file found, please copy and modify the provided example"; |
|
exit; |
|
} |
|
|
|
if ($clear -eq $true) { |
|
Write-Output "Deleting all existing user secrets" |
|
} |
|
|
|
$projects = @{ |
|
Admin = "../src/Admin" |
|
Api = "../src/Api" |
|
Billing = "../src/Billing" |
|
Events = "../src/Events" |
|
EventsProcessor = "../src/EventsProcessor" |
|
Icons = "../src/Icons" |
|
Identity = "../src/Identity" |
|
Notifications = "../src/Notifications" |
|
Sso = "../bitwarden_license/src/Sso" |
|
Scim = "../bitwarden_license/src/Scim" |
|
IntegrationTests = "../test/Infrastructure.IntegrationTest" |
|
} |
|
|
|
foreach ($key in $projects.keys) { |
|
if ($clear -eq $true) { |
|
dotnet user-secrets clear -p $projects[$key] |
|
} |
|
$output = Get-Content secrets.json | & dotnet user-secrets set -p $projects[$key] |
|
Write-Output "$output - $key" |
|
}
|
|
|