-
-
Notifications
You must be signed in to change notification settings - Fork 383
chore(Deps): update dependences #7476
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 |
|---|---|---|
|
|
@@ -32,42 +32,42 @@ | |
| <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Localization" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(NET6Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(NET8Version)" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Localization" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(NET7Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(NET8Version)" /> | ||
|
Comment on lines
+46
to
+51
|
||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET8Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Localization" Version="$(NET8Version)" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET9Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Http" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(NET10Version)" /> | ||
| <PackageReference Include="Microsoft.Extensions.Localization" Version="$(NET9Version)" /> | ||
| </ItemGroup> | ||
|
|
||
|
|
||
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.
Upgrading Microsoft.Extensions packages from NET6Version to NET8Version for a net6.0 target framework creates an inconsistency. While these packages may technically work due to backward compatibility, it's better practice to keep the package versions aligned with the target framework version unless there's a specific reason for the upgrade. This ensures consistency and avoids potential compatibility issues.