
MSBuild: What is it, and when do I need it? - Stack Overflow
Aug 30, 2010 · msbuild is used when you want to build your project from the command line. Whenever you see a continuous integration product that will automatically build your project, it …
How can I force Visual Studio to use MSBuild for .NET 9?
Apr 21, 2025 · I tried creating a custom task using .NET 9. The project builds successfully with dotnet build, but when I try to build it in Visual Studio, it fails with an error: Could not find file or …
How do I run msbuild from the command line using Windows SDK …
C:\Program Files\Microsoft SDKs\Windows\v7.1>msbuild 'msbuild' is not recognized as an internal or external command, operable program or batch file. C:\Program Files\Microsoft …
c# - What's the difference between using dotnet and MSBuild for ...
Feb 24, 2021 · MSBuild stands for "Microsoft Build Engine", which is a platform for building applications. Before the appearance of the platform-independent .NET with .NET Core, …
How can I get MSBuild to restore any needed NuGet packages
Dec 29, 2020 · 42 msbuild -t:Restore will restore nuget packages for projects with PackageReference nuget management format. And your situation looks like packages.config …
Where is MSBuild.exe installed in Windows when installed using ...
Jun 15, 2017 · 60 MSBuild in the previous versions of .NET Framework was installed with it but, they decided to install it with Visual Studio or with the package BuildTools_Full.exe. The path …
Getting msbuild.exe without installing Visual Studio
Jul 23, 2019 · How do you get msbuild.exe without installing those crazy Visual Studio programs? I need it for an npm install to finish working. I'm on Windows 7 and can't get on older …
How do I specify the platform for MSBuild? - Stack Overflow
Jul 1, 2010 · Beware that MSBuild does not consider Visual Studio "Solution configurations", but instead sets properties before executing the xxproj for each project of the solution. The …
concurrency - msbuild.exe command line with …
Aug 13, 2020 · Here is an example MSBuild project file to illustrate the use case to build some projects in parallel (if /m is passed on the command line), to build some projects in parallel (if …
List of MSBuild built-in variables - Stack Overflow
Jan 27, 2016 · How can I get a list of built-in MSBuild variables? I need to know how to determine the current project's csproj name, and thought it might be useful to know what else I can find …