aliasadidev / vscode-npm-gui

vscode nuget package manager gui https://marketplace.visualstudio.com/items?itemName=aliasadidev.nugetpackagemanagergui
MIT License
46 stars 17 forks source link

Feature request - ability to parse "NuGet.config" into solution folder if exists #30

Closed CyberGuerro closed 2 years ago

CyberGuerro commented 2 years ago

It could be useful if npm could load and parse NuGet.config file if exists into solution folder, in particular implement the ability to consider local source's packages path (not feed). below an example for NuGet.config file

<?xml version="1.0" encoding="utf-8"?>
  <configuration>
    <packageSources>
      <add key="local pkg repos" value="/nuget/packages" />
    </packageSources>
  </configuration>

PS. In this case path is in LINUX format, but it could be in WINDOWS format on other systems.

aliasadidev commented 2 years ago

I don't plan to access the user directory. I will add it to the extension settings.

check out the #23