-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[Prev6] Update MicrosoftPrivateIntellisensePackage and XmlDocFileRoot #38118
[Prev6] Update MicrosoftPrivateIntellisensePackage and XmlDocFileRoot #38118
Conversation
Tagging subscribers to this area: @ViktorHofer |
The CI will most likely hit a build failure. Santi and I are investigating it. Update: Fixed. Moved the |
@danmosemsft @mmitche can we take this change for Preview6 still? Currently the intellisense we're shipping are from 3.1. |
We don't have the runway for 5.0 p6 |
What do you mean? I meant that the intellisense xml files that we're including in Preview6 and master without this change are using the xml files from 3.1 release, so it would be nice if we could take this change to use the xml files produced from 5.0-Preview6. |
Can you clarify the impact -- you're saying that currently if I use VS to develop against Preview 6 (and previous 5.0 previews) I will get no intellisense for API that's new in 5.0? Or I just won't get the descriptions? |
Sorry I meant p6 |
Just the descriptions. This has been this way for all the previous previews, so we could wait for P7. |
defdd41
to
0bc91cf
Compare
PR for master: #38109
This PR will update the Intellisense from Preview6 with what was generated from Preview5.
XmlDocFileRoot
was defined in two places:packaging.props
anddocs.targets
.Moved it to a higher level to ensure it's only defined once, in
Directory.Build.props
. Made sure to define it afterNuGetPackageRoot
is defined.Also made sure the folder it reads is
net
instead ofnetcoreapp
, because the Docs build saves the .NET 5.0 intellisense files in thenet
folder, and the .NET 3.1 intellisense files in thenetcoreapp
folder.Updated the nupkg to consume to the latest available version in the feed
20200602.3
, which contains the Preview5 APIs.Note: The version is not being downgraded from 3.1 to 3.0. The Docs build uploads the nupkg to the feed with that name. We will ask them to rename it to avoid confusion.