-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Change MS.EXT and System package versioning to ranged #7029
Conversation
# Conflicts: # src/Akka.sln.DotSettings
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.
LGTM
// Copyright (C) 2013-${CurrentDate.Year} .NET Foundation <https://github.com/akkadotnet/akka.net>
 | ||
// </copyright>
 | ||
//-----------------------------------------------------------------------</s:String> | ||
<s:String x:Key="/Default/CodeStyle/FileHeader/FileHeaderText/@EntryValue">-----------------------------------------------------------------------
 |
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.
lol, glad someone finally fixed this - ty @Arkatufus
@@ -37,7 +37,8 @@ | |||
<HoconVersion>2.0.3</HoconVersion> | |||
<ConfigurationManagerVersion>6.0.1</ConfigurationManagerVersion> | |||
<MultiNodeAdapterVersion>1.5.13</MultiNodeAdapterVersion> | |||
<MicrosoftLibVersion>5.0.0</MicrosoftLibVersion> | |||
<MicrosoftLibVersion>[6.0.*,)</MicrosoftLibVersion> |
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.
LGTM
@@ -12,8 +12,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> | |||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" /> | |||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="$(MsExtVersion)" /> |
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.
LGTM
@@ -10,7 +10,7 @@ | |||
</PropertyGroup> | |||
|
|||
<ItemGroup> | |||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[3.1.0,)" /> | |||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="$(MsExtVersion)" /> |
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.
LGTM
Fixes #5411
Changes
Change Microsoft.Extensions.* and System.* package versioning to use range instead of fixed versioning