-
Notifications
You must be signed in to change notification settings - Fork 1.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
Supply RID graph for .NET Core 3.0 SDK #9806
Comments
Related: #1046 |
If possible, it would be great to be able to pass the RID graph to .net framework builds as well. preferably in a way that can also be shipped within VS. |
We're going to split this in two:
We'll leave this issue tracking just (1) |
This is covered by https://github.com/dotnet/cli/issues/10496 |
Currently, the RuntimeIdentifier graph is provided via the Microsoft.NETCore.Platforms package, which is a dependency of the Microsoft.NETCore.App and NETStandard.Library packages. With .NET Core 3.0, we will be using Targeting Packs instead of these packages. The targeting packs won't support package dependencies, and won't be able to include the runtime graph for NuGet.
So we will need to find a different way of bringing in the RID graph. Two options come to mind:
PackageReference
to Microsoft.NETCore.Platforms. This has the downside that we would need to include this package in the NuGetFallbackFolder, which we would like to get rid of.The text was updated successfully, but these errors were encountered: