-
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
Building project with twice (or more) transitive dependencies explodes. #353
Comments
I think I recall that this is the intended behavior. You will get transitive project references in the output folder, but only direct project references get passed to the compiler. |
Isn't this just dotnet/project-system#199 - that we don't support transitive project references yet. |
So NuGet handles this correctly (updates the assets.json). The bits that are left is letting MSBuild bits (this issue) and the UI work to show the inherited dependencies. Unless I'm missing something dotnet/project-system#199 would still require work in this repo to be done. This issue ends up also being a |
Closing as dup of #200 |
Repro
Given the following setup: Project1 => Project2 => Project3.
When you restore Project1 you get an entry for Project2 and Project3 in the assets.json file. However, when you build Project1 Project3 is never passed to csc.
Trying restoring/building the following: TransitiveCSCRepro.zip
dotnet info:
SDK:
1.0.0-alpha-20161029-1
The text was updated successfully, but these errors were encountered: