-
Notifications
You must be signed in to change notification settings - Fork 347
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
Move VerifyClosure tasks into M.D.PackageTesting #7692
Move VerifyClosure tasks into M.D.PackageTesting #7692
Conversation
926af47
to
66e4867
Compare
Depends on dotnet/arcade#7692 Removing the dependency on the Packaging assembly in favor of the PackageTesting assembly which now contains the VerifyClosure and VerifyTypes tasks that are required for package testing. Also removing some obsolete properties and files.
66e4867
to
2833628
Compare
9b765fa
to
b0b4c0a
Compare
As we plan to deprecate the M.D.B.Tasks.Packaging project in the future, moving the tasks into the PackageTesting project. Fixes dotnet#7474
b0b4c0a
to
2b02594
Compare
@@ -9,6 +9,8 @@ | |||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCoreVersion)" /> | |||
<PackageReference Include="NuGet.Frameworks" Version="$(NuGetVersion)" /> | |||
<PackageReference Include="NuGet.Packaging" Version="$(NuGetVersion)" /> | |||
<!-- Remove when targeting >= net5.0. --> | |||
<PackageReference Include="System.Reflection.Metadata" Version="5.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.
This PackageReference is required to avoid a conflict in ResolveAssemblyReference where RAR can't decide which System.Reflection.Metadata assembly to choose.
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
* React to Verify* task PackageTesting change Depends on dotnet/arcade#7692 Removing the dependency on the Packaging assembly in favor of the PackageTesting assembly which now contains the VerifyClosure and VerifyTypes tasks that are required for package testing. Also removing some obsolete properties and files.
As we plan to deprecate the M.D.B.Tasks.Packaging project in the future,
moving the tasks into the PackageTesting project. This removes the dependency on the Packaging assembly in the package testing infrastructure in dotnet/runtime.
Fixes #7474
To double check: