-
Notifications
You must be signed in to change notification settings - Fork 64
Remove new Microsoft.NETCore.App.Ref targeting pack assemblies from WindowsDesktop targeting pack #1747
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 new Microsoft.NETCore.App.Ref targeting pack assemblies from WindowsDesktop targeting pack #1747
Conversation
…indowsDesktop's targeting pack
Unblocks #1746. |
@dreddy-work we'll need to scan our codebase for these as well. |
Thanks, @RussKie. |
@@ -36,7 +36,7 @@ | |||
manually enabled by updating the metadata. | |||
--> | |||
<ItemGroup> | |||
<ProjectServicingConfiguration Include="Microsoft.WindowsDesktop.App.Ref" PatchVersion="0" /> | |||
<ProjectServicingConfiguration Include="Microsoft.WindowsDesktop.App.Ref" PatchVersion="6.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 is wrong. PatchVersion should not be the full version but just the last digit. AFAIK this setting is only relevant during servicing. @jkoritzinsky and @dagood should know more about it.
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.
Viktor is right here.
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.
Looks like including ("major.minor.patch".)
in the comment above this group might be confusing. Intended it to just be an example of where patch version is in a full version number, but easy to interpret differently. Probably clearer just to remove it and let the rest of the comment clarify that it should normally be the same as PatchVersion
.
You are missing some of the changes that I did in the preview 6 PR: #1742. More precisely, the Version.Detail.xml and the Versions.props changes. |
Thanks, everyone. #1753. |
Required by:
Remove new Microsoft.NETCore.App.Ref targeting pack assemblies from WindowsDesktop targeting packs, and update versions.props to rebuild WindowsDesktop targeting packs.