-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Remove Microsoft.Extensions.PlatformAbstractions #5058
base: master
Are you sure you want to change the base?
Conversation
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> |
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.
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> | |
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> | |
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.11" /> | |
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.11" /> |
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.
Latest is not always greatest, I've chosen lowest version possible.without problems to minimize effects on consumers.
@@ -14,12 +14,10 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | |||
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" /> | |||
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> |
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.
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" /> | |
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.11" /> |
* fix some vulnerable dependencies
17cbd11
to
fcbd987
Compare
Trying to remediate some problems with dependencies with incremental update.
Microsoft.Extensions.PlatformAbstractions
has been deprecated and there are APIs to use without that. OldMoq
brings some vulnerable dependencies with it.I tested this with debugger and both
net462
(Console) and core versions (8 and 9, ConsoleCore) seemed to hit the correct breakpoints/paths.