campersau
campersau
I have tested it a little bit and yes the executable flag is missing when installed on linux via vscode. The problem is that the `vsix` is missing the executable...
It looks like the `vsix` is corrupt. I get the following error in vscode on windows and linux:  Renaming the `vsix` to `.zip` and tying to open it results...
Looks good now:  I also successfully authenticated through it 👍 .
A long time ago this was actually a plugin. But a lot has changed since then and the plugin does not work anymore. Maybe it could be migrated to this...
> You can try to remove the credentials from the Windows Credential Manager: https://support.microsoft.com/en-us/help/4026814/windows-accessing-credential-manager https://github.com/NuGetPackageExplorer/NuGetPackageExplorer/issues/1045#issuecomment-648688468
Just want to note that the current logic is similar to the one in Nuget.Client but without the total count per version "fix": https://github.com/NuGet/NuGet.Client/blob/e9c22b1c5783edefcd9c5175dc76f99206fa14c8/src/NuGet.Core/NuGet.Protocol/Resources/PackageSearchResourceV3.cs#L28-L32
Is the `NewApproach` this one https://github.com/304NotModified/NuGetPackageExplorer/blob/a6e936f827433dd41e9546cba74a06bcc4719a68/UnitTestProject1/PerformanceJsonTests.cs#L21-L31 ? How would we integrate the `NewApproach` because we currently using the [RawSearchResourceV3](https://github.com/NuGet/NuGet.Client/blob/dev/src/NuGet.Core/NuGet.Protocol/Resources/RawSearchResourceV3.cs) which returns an `IEnumerable` and not the raw stream?
https://github.com/NuGet/NuGet.Client/pull/3406 got merged which should improve memory usage and performance for static feeds.
I looked into the fix in more detail and it will limit static feeds to only return the first items - specified by `take`. I think it is because static...
It looks like static feeds will not be supported by `NuGet.Client` (see https://github.com/NuGet/Home/issues/9726#issuecomment-654581621). So I think we have two options now: - Try to support static feeds on our own...