Skip to content

Commit

Permalink
Update package versions in various project files
Browse files Browse the repository at this point in the history
Updated the following package versions:
- `Microsoft.AspNetCore.OpenApi` in `TinyHelpers.AspNetCore.Sample.csproj` from `8.0.8` to `8.0.10`.
- `Microsoft.EntityFrameworkCore.SqlServer` in `TinyHelpers.EntityFrameworkCore.Sample.csproj` from `8.0.8` to `8.0.10`.
- `TinyHelpers` in `TinyHelpers.Dapper.csproj` from `3.1.16` to `3.1.18`.
- `TinyHelpers` in `TinyHelpers.EntityFrameworkCore.csproj` from `3.1.16` to `3.1.18`.
- `Microsoft.EntityFrameworkCore.Relational` in `TinyHelpers.EntityFrameworkCore.csproj` for `net6.0` from `6.0.33` to `6.0.35`.
- `Microsoft.EntityFrameworkCore.Relational` in `TinyHelpers.EntityFrameworkCore.csproj` for `net8.0` from `8.0.8` to `8.0.10`.
  • Loading branch information
marcominerva committed Oct 9, 2024
1 parent 269faf1 commit a244f2b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.10" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/TinyHelpers.Dapper/TinyHelpers.Dapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="TinyHelpers" Version="3.1.16" />
<PackageReference Include="TinyHelpers" Version="3.1.18" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="TinyHelpers" Version="3.1.16" />
<PackageReference Include="TinyHelpers" Version="3.1.18" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.33" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.35" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.20" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit a244f2b

Please sign in to comment.