ionide / ionide-vscode-fsharp

VS Code plugin for F# development
http://ionide.io
MIT License
850 stars 276 forks source link

Show package names only once #1920

Closed dawedawe closed 10 months ago

dawedawe commented 10 months ago

WHAT

🤖 Generated by Copilot at b03d263

Fixed a bug in the solution explorer that caused duplicate package references to appear. Modified packageRefs in src/Components/SolutionExplorer.fs to filter out duplicates by name.

🤖 Generated by Copilot at b03d263

packageRefs fixed No more duplicates shown in Solution explorer

🐛🗑️🗃️

WHY

Because there are multiple .dll files in the FSharp.Compiler.Service package, proj-info has two entries in the PackageReferences, which is fine. But here, we only want to show the package names. image

HOW

🤖 Generated by Copilot at b03d263