-
Notifications
You must be signed in to change notification settings - Fork 0
[Org Update] Update .NET to net8.0,net9.0,net10.0 #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
| </Project> | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
| </Project> |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,16 +1,15 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
| <PropertyGroup> | ||||
| <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> | ||||
| </PropertyGroup> | ||||
|
|
||||
| <ItemGroup> | ||||
| <PackageReference Include="Microsoft.EntityFrameworkCore" /> | ||||
| <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" /> | ||||
| <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" /> | ||||
| <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" /> | ||||
| <PackageReference Include="Microsoft.Extensions.Hosting" /> | ||||
| </ItemGroup> | ||||
| <ItemGroup> | ||||
| <ProjectReference Include="..\Zonit.Extensions.Databases.Abstractions\Zonit.Extensions.Databases.Abstractions.csproj" /> | ||||
| </ItemGroup> | ||||
| </Project> | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
| <PropertyGroup> | ||||
| <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> | ||||
| </PropertyGroup> | ||||
| <ItemGroup> | ||||
| <PackageReference Include="Microsoft.EntityFrameworkCore" /> | ||||
|
||||
| <PackageReference Include="Microsoft.EntityFrameworkCore" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
Microsoft.Extensions.Hostingpackage for net8.0 is at version 8.0.1, while other Microsoft packages (EntityFrameworkCore.*) were updated to 8.0.22. For consistency and to ensure all packages are using the latest patch versions,Microsoft.Extensions.Hostingfor net8.0 should be updated to 8.0.22 or later.