Skip to content

Commit

Permalink
NuGet package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cwe1ss committed Dec 9, 2022
1 parent 5edf012 commit 13d3b7c
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 42 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand All @@ -7,16 +7,7 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework)=='netcoreapp2.1'">
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="[2.1.1,3)" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="[2.1.16,3)" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[2.1.14,3)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[2.1.14,3)" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
<PackageReference Include="NSubstitute" Version="4.4.0" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework)=='netcoreapp3.1'">
Expand Down
4 changes: 2 additions & 2 deletions samples/net6.0/CustomersApi/CustomersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[6.0.11,7)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[6.0.11,7)" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions samples/net6.0/OrdersApi/OrdersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[6.0.11,7)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[6.0.11,7)" />
</ItemGroup>

</Project>
9 changes: 4 additions & 5 deletions samples/net6.0/Shared/Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Jaeger" Version="0.4.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="6.0.0-preview.4.21253.7" />
<PackageReference Include="Jaeger" Version="1.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[6.0.0,7)" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="[6.0.0,7)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[6.0.3,7)" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions samples/net7.0/CustomersApi/CustomersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[7.0.0,8)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[7.0.0,8)" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions samples/net7.0/OrdersApi/OrdersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[7.0.0,8)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[7.0.0,8)" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions samples/net7.0/Shared/Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

<ItemGroup>
<PackageReference Include="Jaeger" Version="1.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[7.0.0,8)" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="[7.0.0,8)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[7.0.0,8)" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions samples/netcoreapp3.1/CustomersApi/CustomersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[3.1.8,4)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[3.1.8,4)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[3.1.31,4)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[3.1.31,4)" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions samples/netcoreapp3.1/OrdersApi/OrdersApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[3.1.8,4)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[3.1.8,4)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[3.1.31,4)" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="[3.1.31,4)" />
</ItemGroup>

</Project>
10 changes: 5 additions & 5 deletions samples/netcoreapp3.1/Shared/Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Jaeger" Version="0.4.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
<PackageReference Include="Jaeger" Version="1.0.3" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[3.1.31,4)" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="[3.1.31,4)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[3.1.31,4)" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="NSubstitute" Version="4.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 13d3b7c

Please sign in to comment.