Find the location of MSBuild and GacUtil (when extending the build)

A useful helper class from the Microsoft.Build.Utilities (v4.0) assembly: ToolLocationHelper. With this helper it is easy to retrieve the location of MSBuild.exe and gacutil.exe. //Gacutil: ToolLocationHelper. GetPathToDotNetFrameworkSdkFile("gacutil.exe", TargetDotNetFrameworkVersion.VersionLatest) //MSBuild: ToolLocationHelper. GetPathToDotNetFrameworkFile("msbuild.exe", TargetDotNetFrameworkVersion.Version40) Use the overload with DotNetFrameworkArchitecture to retrieve the Continue reading

Using the AspNetDevelopmentServer attribute in combination with TeamBuild

Just two statements: Everyone should unit test (or unit integration test, for the purists) Everyone should use TeamBuild (or another nightly build infrastructure) From this we can derive the following statement: Everyone should unit test in combination with TeamBuild!   Continue reading