
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 …
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 …
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 …
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 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 …
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 …
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 …
Specify assembly version number as a command line argument in …
Mar 15, 2017 · Specify assembly version number as a command line argument in MSBuild Asked 13 years, 11 months ago Modified 1 year, 6 months ago Viewed 83k times
msbuild - How do I enable long file paths Visual Studio will respect ...
Jul 18, 2023 · I have multiple solutions that we changed to use deep folder structures / long file names. Some are failing to build due to long paths (exceeding 260 characters). I have updated …