Update RabbitMQ.Client to version 6.0.0-rc3

This commit is contained in:
Luke Bakken 2020-04-01 09:52:14 -07:00
parent 625c18d93c
commit f29e508b46
No known key found for this signature in database
GPG Key ID: D99DE30E43EAE440
16 changed files with 27 additions and 14 deletions

2
dotnet/.gitignore vendored
View File

@ -1,4 +1,4 @@
recompile.sh
*.dll
*.exe
*.lock.json
packages/

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -9,7 +9,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -9,6 +9,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -9,6 +9,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -9,6 +9,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="5.1.*" />
<PackageReference Include="RabbitMQ.Client" Version="6.0.0-rc.3" />
</ItemGroup>
</Project>

7
dotnet/recompile.ps1 Normal file
View File

@ -0,0 +1,7 @@
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version 'Latest' -ErrorAction 'Stop' -Verbose
Get-Childitem -Recurse '*.csproj' | ForEach-Object {
# & dotnet build $_.FullName
& dotnet build $_
}

6
dotnet/update.ps1 Normal file
View File

@ -0,0 +1,6 @@
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version 'Latest' -ErrorAction 'Stop' -Verbose
Get-Childitem -Recurse '*.csproj' | ForEach-Object {
& dotnet add $_ package --version '6.0.0-rc.3' RabbitMQ.Client
}