How can I programatically get the path to MSBuild from a machine where my .exe is running?
I can get the .NET version from the Environment but is there a way of getting the correct folder for a .NET version?
|
|
|
Poking around the registry, it looks like
may be what you're after; fire up regedit.exe and have a look. |
||||
|
|
|
For cmd shell scripting in Windows 7, I use the following fragment in my batch file to find MSBuild.exe in the .NET Framework version 4. I assume version 4 is present, but don't assume the sub-version. This isn't totally general-purpose, but for quick scripts it may be helpful:
For my uses I'm exiting the batch file with an error if that didn't work:
|
|||
|
|
|
The Registry locations
give the location for the executable. But if you need the location where to save the Task extensions, it's on
|
|||||
|
|
If you want to use MSBuild for .Net 4 then you can use the following PowerShell command to get the executable's path. If you want version 2.0 or 3.5 then just change the $dotNetVersion variable. To run the executable you'll need to prepend the $msbuild variable with &. That will execute the variable.
|
|||
|
|
|
You can also get the path to MSBuild.exe from the command line:
|
|||
|
|