Technically to access the Windows App SDK you only need the Microsoft.WindowsAppSDK NuGet packge, which you can download from https://nuget.org and a WinRT projection. That leads to a bad experience though, so that's how VS is generally needed. - Source: Reddit / about 1 month ago
Here's the kicker... Unlike Java and Python, the vast majority of the libraries you need are built into The DotNet Runtime Packages. When you do need something specialized, you'll find it on the Nuget Package Repository. - Source: Reddit / 4 months ago
The nuget.config points to the typical nuget.org link and one of our own links. This runtime should be on the azure build VM. and I dont think any reference should be required for it. - Source: Reddit / 5 months ago
Go to nuget.org and search for "crc32 fast" https://www.nuget.org/packages?q=crc32+fast. - Source: Reddit / 6 months ago
Since the nuget Packages are not being distributed to nuget.org yet, you will need to add a custom source for your Nuget packages. As it is mentioned in the Github repository under modules/mono/Readme.md, you can add a Nuget source with the following command:. - Source: Reddit / 7 months ago
Don't reinvent the wheel. There are several CSV reader libraries on nuget.org. I've used TinyCsvParser in a couple of projects and it's worked well for me. - Source: Reddit / 7 months ago
Also because its .net, you have access to repositories from everywhere, if you cant do the hard codding yourself most likely someone already did it and post in in nuget.org or others. - Source: Reddit / 8 months ago
Bookmark the nuget.org listings in your browser? - Source: Reddit / 8 months ago
My dotnet library CI, which automatically pushes new releases on every push to the main branch on nuget.org. - Source: Reddit / 8 months ago
Netstandard2.0 in particular is rather funky, since although net48 applications can consume netstandard2.0, you have to be familiar with various interop packages you'll need from nuget.org to make things work while you transition. - Source: Reddit / 9 months ago
Scenario 2: some guy called me because he was getting some errors with NuGet, the errors were all about how NuGet couldn't restore packages because it couldn't find some Microsoft packages. It worked for everyone else but him. Nuget source was configured as normal. No VPN connection (we have to use it for some client-internal packages in artifactory, but not the case here), nothing. It was as if the packages... - Source: Reddit / about 1 year ago
If you go on nuget.org you should see a big yellow banner on the deprecated packages: https://imgur.com/a/Epkx2nC. - Source: Reddit / about 1 year ago
Also having a dedicated repository for the used packages instead of pulling everything directly from a public source (e.g.: nuget.org) helps preventing unintentional (and potentially vulnerable) transitive dependencies. - Source: Reddit / about 1 year ago
Oh, bonus points for setting up a local cache - like setting it up to pull from nuget.org and keeping a copy for local delivery. - Source: Reddit / about 1 year ago
FeedsToUse results in using both the feed you specify and the nuget.org one which might not be desirable. In our org, we connect the internal feed with nuget.org as a source and then use nuget.config to clear all package source and use only the Azure DevOps one. - Source: Reddit / over 1 year ago
If everything is locked down that tight, you really don't have any choice than the file a ticket with IT requesting them to unblock access to nuget.org, and then send an email to your manager referencing the ticket and stating that you are unable to continue with that project. - Source: Reddit / over 1 year ago
Although nuget.org does have a search, I'd most likely google 'blazor xxxxx' and that would either lead to how to do it, and / or the package to use. - Source: Reddit / over 1 year ago
How so? I work on nuget.org, our architecture is based on event sourcing. - Source: Reddit / over 1 year ago
Well, Microsoft owns GH. Damn, it owns nuget.org - you can't sign into NuGet using other means than Microsoft accounts. - Source: Reddit / almost 2 years ago
System.Speech is still available. One thing that Microsoft has gone to doing for the non-"Base" libraries is releasing them as a nuget packages. A search on nuget.org finds this from Microsoft: https://www.nuget.org/packages/System.Speech/6.0.0-preview.5.21301.5. - Source: Reddit / almost 2 years ago
Hm, interesting thought. If you published an extension to nuget.org others would be able to download it but only as a nuget package that you can install into a project. For each feed you can configure if it contains nuget packages or extensions, so users would need to change this setting for the nuget.org feed to indicate that it contains both. This is done so users are not swamped with nuget packages in the... - Source: Reddit / almost 2 years ago
Do you know an article comparing NuGet to other products?
Suggest a link to a post with product alternatives.