-
Notifications
You must be signed in to change notification settings - Fork 33
Misc PackageIndexer updates #408
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
Conversation
gewarren
commented
Sep 18, 2024
- Hardcode list of .NET packages (this is temporary - eventually will query Kusto)
- Don't include XML file for Microsoft.Extensions.Diagnostics.ResourceMonitoring (see .NET 9 RC 1 updates dotnet-api-docs#10395 (comment))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM @gewarren
I had one question, and then let's
string url = "https://nugetprodusncazuresearch.blob.core.windows.net/v3-azuresearch-017/owners/owners.v2.json"; | ||
return httpClient.GetFromJsonAsync<Dictionary<string, string[]>>(url); | ||
return httpClient.GetFromJsonAsync<Dictionary<string, string[]>>(url)!; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this throw an exception if the result is null?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I logged #411 since this merged already. Thanks for the review!