msbuild

Finding the Root Build Folder with MSBuild

published on
This is a common practice that I find in Microsoft projects. In MSBuild you sometimes want to get to the root folder of where all your projects are checked in. There is no automatic way to do this. However, you can make it happen by doing the following. First, find the root folder of your build. Add a file there called build.root. The name of the file doesn’t matter, but build. Read More...