Rafael Câmararafaeljcamara.hashnode.dev·Nov 4, 2024Automate Your C# Library Deployment: Publishing to NuGet and GitHub Packages with GitHub ActionsSo you’ve created a cool C# library that you want to share with your fellow developers, but don’t know how? Maybe you know you could do that with NuGet packages, but don’t know how to create one? This post showcases how you can make this amazing libr...DiscussC#
Nirav Soniniravsoni.hashnode.dev·Jul 27, 2024GitHub Actions and Dependabot: Automate and Simplify Your Project UpdatesProblem statement In the fast-paced world of software development, maintaining up-to-date dependencies is crucial for ensuring security, performance, and functionality. There's a common saying: "Don't reinvent the wheel". When building .NET applicat...Discuss·3 likes·100 readsNuget
Nirav Soniniravsoni.hashnode.dev·Jul 10, 2024Streamlining Package and Project Management in .NET Apps using Directory.Build.props and Directory.Packags.propsOverview Dependency management is an important requirement in any .NET app. Managing dependencies for a single project can be easy. Managing dependencies for multi-project solutions can prove to be difficult as they start to scale in size and complex...Discuss·4 likes·139 reads.NET
Kristof RiebbelsProdotnet.kriebbels.me·May 5, 2024Signature validation required? Microsoft Says No.No signature validation using AddMicrosoftAccount() TLDR; Microsoft's AddMicrosoftAccount() method does not do signature validation for tokens, which poses potential security risks. This article explores the implications of this, using an analogy of ...Discuss·43 readsDotNetEntra
Ishrar Gblog.ishrar.in·Jan 12, 2024How I Built a NuGet PackageIntroduction Open-source software has always been a cornerstone of the programming world, providing a platform for innovation and collaboration. Despite being a firm believer in its power, I never saw myself as someone who would contribute to this va...Discuss·17 likes·151 readsC#Nuget
Arsalan Zarsalanz.hashnode.dev·Jan 12, 2024Restore Multiple nuget packages inside a Docker buildUsing multiple private nuget feeds from azure artifacts can be a bit complicated at times. Let's see how we can follow step by step solution to get this task done in a YAML based azure pipeline. The ENV variable VSS_NUGET_EXTERNAL_FEED_ENDPOINTS is a...Discussazure-devops
Gilles TOURREAUProgilles.tourreau.fr·Dec 5, 2023Strengthening Moq based unit tests with PosInformatique.Moq.AnalyzersAs a passionate advocate for robust unit testing and code quality, I've invested heavily in leveraging the Moq library within my .NET projects. To ensure reliability and catch potential errors early, I developed a .NET analyzer tool specifically tail...Discuss·10 likes·58 reads.NET
Derek Kowalddkowald.hashnode.dev·Nov 22, 2023Testing NuGet packages in local developmentIn an ideal world, when developing a NuGet package you can easily verify it works during local development. For simple / code-only NuGet packages it's easy, just use a project reference: <ProjectReference Include= "MyPackage"> But, if your package c...Discuss·168 readsC#
Hugo Almeidahugofrompt.hashnode.dev·Jul 12, 2023Update NuGet packages ...I find myself updating NuGet packages many times on my dotnet projects. And trying to find commands as many times as I have to update them 🤦 so, I decided to make it available forever as a reference to me. For this, we just need a command line or te...Discuss·57 readsNuget
Charles Farrisblog.sleepingbearsystems.com·Mar 27, 2023Tools NuGet PackagesWhen I first started writing the XGallery3 application, I experimented with splitting out common code into NuGet packages. At the time, the experiment was mostly a failure since the shared code I split off into the packages was still undergoing a lot...Discuss·39 readsNuget