-
Notifications
You must be signed in to change notification settings - Fork 391
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
Dependency node does not handle configuration switches #3642
Comments
Exactly the same issue as #2733 except that this is the dependency node which has the same code, but duplicates it. |
@tmeschter I'll need to make additional work, it will basically need to copy the pattern I've used for language service. I have this work on the back of my mind. |
@drewnoakes This will be covered in the dependency node rewrite- can you move to appropriate milestone or dup against existing bugs. |
@lifengl identified a leaked |
Another repro: <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project> Switch between release and debug configurations and the tree will not update. |
Expected: No warning icons
Actual: Warning icon on reference
The text was updated successfully, but these errors were encountered: