Skip to content

Commit

Permalink
chore: Update integration test dependencies to latest. (#2582)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaffinito authored Jun 28, 2024
1 parent 3b0e65d commit aa470d7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.1.608" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="StackExchange.Redis" Version="2.0.601" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="StackExchange.Redis" Version="2.2.88" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="StackExchange.Redis" Version="2.7.33" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="StackExchange.Redis" Version="2.8.0" Condition="'$(TargetFramework)' == 'net481'" />

<!-- StackExchange.Redis .NET/Core references -->
<PackageReference Include="StackExchange.Redis.StrongName" Version="1.2.6" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="StackExchange.Redis" Version="2.7.33" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="StackExchange.Redis" Version="2.8.0" Condition="'$(TargetFramework)' == 'net8.0'" />

<!-- Elasticsearch NEST framework references -->
<PackageReference Include="NEST" Version="7.0.0" Condition="'$(TargetFramework)' == 'net462'" />
Expand All @@ -132,11 +132,11 @@
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.0.0" Condition="'$(TargetFramework)' == 'net462'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.0.9" Condition="'$(TargetFramework)' == 'net471'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.0.9" Condition="'$(TargetFramework)' == 'net48'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.14.2" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.14.3" Condition="'$(TargetFramework)' == 'net481'" />

<!-- Elastic.Clients.Elasticsearch .NET/Core references - only actually testing oldest and newest -->
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.0.0" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.14.2" Condition="'$(TargetFramework)' == 'net8.0'" />
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.14.3" Condition="'$(TargetFramework)' == 'net8.0'" />

<!-- Serilog .NET framework references -->
<PackageReference Include="Serilog" Version="1.5.14" Condition="'$(TargetFramework)' == 'net462'" />
Expand Down Expand Up @@ -312,7 +312,7 @@
data from RestSharp usage. -->
<PackageReference Include="RestSharp" Version="107.3.0" Condition="'$(TargetFramework)' == 'net48'" />
<!-- Latest version of RestSharp to test against. Relies on HttpClient instrumentation. -->
<PackageReference Include="RestSharp" Version="111.2.0" Condition="'$(TargetFramework)' == 'net481'" />
<PackageReference Include="RestSharp" Version="111.3.0" Condition="'$(TargetFramework)' == 'net481'" />

<!-- Not testing these versions, but it simplfies the RestSharpExerciser class by not needing if directives -->
<PackageReference Include="RestSharp" Version="106.6.10" Condition="'$(TargetFramework)' == 'net6.0'" />
Expand Down

0 comments on commit aa470d7

Please sign in to comment.