-
Notifications
You must be signed in to change notification settings - Fork 258
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
Automatically use PackageReference mode if referencing a project that uses PackageReference #4581
Comments
Restore could determine this, it always finds the full project to project reference graph and the restore style of each project. However, wouldn't changing the behavior of an existing project to flow all references to it transitively be somewhat unexpected and possibly breaking? There would also be the scenario where the parent project uses packages.config and can't just switch over to using an assets file. |
Yeah, sounds like this would be best as a clear error rather than an unexpected behavior change. There may already be metadata on the returned reference items that would be good enough to fuel that in the referencing project. |
Yes, experience needs thought/design. Consider post RTM. |
I wouldn't call this a breaking change for pre-VS2017 projects, because the behavior wouldn't change at all until you reference a project that uses In general I agree with Rob that we need more thought and design for this. I do think it's important that we try to do something to improve the experience here. |
Sorry for digging this up again, but do we have a plan to cure this problem yet? Running into this with Standard 1.4 and Unit Test Project (4.6.1) ATM and haven't figured out a good workaround yet. |
Is there a fix or a workaround for this? |
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup> |
This also affects Xamarin projects referencing libraries that use PackageReference but where the Xamarin "head" projects do not have any PackageReferences of their own. |
This issue seems to be tracked in dotnet/standard#481 |
Adding NeedsTriageDiscussion. Given that changing the behavior a few years later would be a breaking change (even if a well meaning one), I don't think we should do this. Furthermore think of the following scenario. A (.NET project) -> B (no NuGet project).
|
I'm not sure how feasible this is, but we have a really poor experience referencing .NET Standard projects from .NET Framework projects today:
Here are issues I've found that people have filed after running into this:
dotnet/standard#202
dotnet/sdk#757
dotnet/sdk#766
dotnet/sdk#747
dotnet/standard#192
Issue #4488 now tracks a way to opt-in to PackageReference mode without havinng any
PackageReference
items in a project. However, you would have to know to opt in, so this would still be a common pit of failure.Ideally, we could automatically detect when a project references another project that's in PackageReference mode, and automatically use PackageReference mode in the referencing project. We might be able to return metadata from one of the targets that's called on project references to help with this. However, by the time we call that target it might be too late- we may need to decide on the restore mode before then. If that's the case then it could still be helpful to generate an error or warning letting people know how to opt in to PackageReference mode.
@nguerrera @rainersigwald for feedback on how we could pass this information between projects as metadata
@rrelyea @emgarten for general FYI
The text was updated successfully, but these errors were encountered: