7 lines
212 B
PowerShell
7 lines
212 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
Set-StrictMode -Version 'Latest' -ErrorAction 'Stop' -Verbose
|
|
|
|
Get-Childitem -Recurse '*.csproj' | ForEach-Object {
|
|
& dotnet add $_ package --version '6.0.0' RabbitMQ.Client
|
|
}
|