Skip to content

Commit

Permalink
Version 6
Browse files Browse the repository at this point in the history
  • Loading branch information
JonPSmith committed Nov 22, 2023
1 parent c8de84c commit 9cfb425
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Benchmarking/Benchmarking.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
<PackageReference Include="EfCore.TestSupport" Version="8.0.0-rc2-0001" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
Expand Down
4 changes: 2 additions & 2 deletions DataLayer/DataLayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.1.23419.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0-rc.1.23419.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions GenericServices/GenericServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.0-rc.2.23480.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
</ItemGroup>

Expand All @@ -28,7 +28,7 @@

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>6.0.0-rc2-0001</PackageVersion>
<PackageVersion>6.0.0</PackageVersion>
<Version>6.0.0</Version>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
Expand All @@ -43,7 +43,7 @@
<RepositoryType>GuHub</RepositoryType>
<PackageTags>Entity Framework Core, ASP.NET Core</PackageTags>
<PackageReleaseNotes>
Fixed problem caused by building the services early. Fix provided by @JonathanQuinth PR #67
New version to support NET 8 - now supports NET 6, 7, and 8
</PackageReleaseNotes>
<PackageIcon>GenericServicesNuGetIcon128.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 6.0.0

- New version to support NET 8 - now supports NET 6, 7, and 8

## 8.0.0-rc1-0001

- First build using NET 8-rc1
Expand Down
2 changes: 1 addition & 1 deletion ServiceLayer/ServiceLayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="EfCore.TestSupport" Version="8.0.0-rc2-0001" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.0-rc.2.23480.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.1" />
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
Expand Down

0 comments on commit 9cfb425

Please sign in to comment.