Sayan Duttabuildmagic-sayandev.hashnode.dev·Jan 9, 2025Every Build Tells a Story: The Science of `dotnet build`Ever Wondered What Happens After You Press "Build Solution"? If you’re a .net developer, chances are you’ve hit that magical “Build Solution” button countless times. But have you ever paused to wonder, what really happens behind the scenes? How does ...1 like·26 readsdotnet
shineydocs-eddy-studios.hashnode.dev·Dec 5, 2023认识 MSBuild - 1前言 很多人一谈到 MSBuild,脑子里就会出现 “XML”、“只能用 VS 的属性框图形界面操作”、“可定制性和扩展性差” 和 “性能低” 等印象,但实际上这些除了 “XML” 之外完全都是刻板印象:这些人用着 Visual Studio 提供的图形界面,就完全不愿意花个几分钟时间翻翻文档去理解 MSBuild 及其构建过程。 另外,再加上 vcxproj (Visual C++ 项目)的默认 MSBuild 构建文件写得确实谈不上好(默认只能项目粒度并行编译,想要源码级并行编译你得加钱),...msbuild
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...192 readsC#
Edvin Dsouzaedvindsouza.hashnode.dev·Jul 25, 2023Building a .NET Code Repository in Azure DevOps Using MS Build: Step-by-Step GuideStep 1: Set up Azure DevOps Project Go to https://dev.azure.com/ and sign in with your Azure DevOps account. Click on "Create project" to create a new project or use an existing one. https://github.com/eddzaa/azure-devops-dotnet-samples.git Step...32 reads.NET
Fenil Desaiopeningbatsman.hashnode.dev·Jun 10, 2022Amazing List of #PowerPlatform sessions on #MSBuild 2022Don't worry if you have missed attending the Microsoft Build 2022 event which was concluded recently. #MSBuild #2022 There were amazing sessions on various technologies covering .NET, Azure, Microsoft 365, AI, Security, etc. and ofcourse #PowerPlatfo...78 readsMicrosoft
Cecil Phillipcecilphillip.dev·Jun 9, 2017Excluding the node_modules folder when publishing ASP.NET projects.There are quite a few ASP.NET developers that have been adopting NodeJS in their projects for client side package management and development time tooling. A question that I get relatively often is, how can they exclude the node_modules folder from be...ASP.NET