-
Notifications
You must be signed in to change notification settings - Fork 62
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
VS in a credentials request dead-loop when trying to access NuGet feed #662
Comments
Workaround: For some odd reason after removing the feed from VS settings and adding it manually into the project, the issue is gone (added the following NuGet.config file into the dependent project) <?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="CommunityToolkit-Labs" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json" />
</packageSources>
</configuration> |
Interestingly mine was only ever added as a
EDIT: Nevermind, it came back. |
Try to clear the NuGet cache after you've disabled the option in the VS NuGet options then try to rebuild. |
Anyway I still can't build the project
|
@weitzhandler this is going to be an issue with DevOps itself, VS, and/or NuGet, not specific to the Toolkit Labs feed. We've seen issues in the past where DevOps tries to pre-emptively authenticate if you have logged into a DevOps instance before with cached credentials, but the feed is unauthenticated. In the browser, you can generally open it in a InPrivate tab without issue. I haven't seen this come up in VS before though, so this seems new. Since you see the error in the console too, I'd start by opening an issue on the NuGet repo? |
@michael-hawker , I think the issue is that https://pkgs.dev.azure.com/dotnet/696bc9fd-f160-4e97-a1bd-7cbbb3b58f66/_packaging/9c12ba9d-e4eb-4290-9266-e0fb1a871009/nuget/v3/vulnerabilities/index.json which is referenced in https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json requires a login. If that isn't expected, it would be some Azure config change in the feed. EDIT: From the urls linked in the main feed. I don't know nuget spec or what are meant to work or not. EDIT 2: When I try login via the web form it presents I get the error. Hopefully this helpful to find the right person to ping.
MainLatest feed also hits up a different vulnerabilities/index.json but results in the same unauthorised. |
@beeradmoore this is very helpful! Thank you. I didn't realize there was all these internals. I wonder if something in the base DevOps instance (which is managed by the .NET Foundation for us) changed underneath. I have an inquiry out in the maintainers chat. I don't see any settings that we have (at least not exposed through the DevOps portal) that would enable us to configure any of that. |
Describe the bug
This happens whenever I'm opening NuGet manager for a solution where the Labs feed is one of its sources.
The credentials screen appears in a continuous dead-loop that blocks any input in VS and appears again and again essentially locking out the IDE for good (till restart).
Steps to reproduce
Expected behavior
Should not ask for credentials.
Screenshots
No response
Code Platform
Windows Build Number
Windows 11 21H2 (Build 22621)
Other Windows Build number
No response
App minimum and target SDK version
Windows 10, version 1809 (Build 17763)
Other SDK version
No response
Visual Studio Version
17.13.5
Visual Studio Build Number
No response
Device form factor
No response
Additional context
No response
Help us help you
The text was updated successfully, but these errors were encountered: