One of my colleagues @gdurzi recently asked me this question. Sounds straightforward enough to be supported out of the box with TFS right? Too many quirks with this. And I recommended using the ever faithful MSBuild <Exec> task to …

How to Chain TFS Builds? Read more »

Tagged with: , ,

So you just moved from NAnt to MSBuild and put together the following MSBuild script to copy files (just like in my case) <Project xmlns=”http://schemas.microsoft.com/developer/msbuild/2003″> <PropertyGroup> <Configuration Condition=” ‘$(Configuration)’ == ” “>Debug</Configuration> <WSPDir>.\release</WSPDir> </PropertyGroup> <ItemGroup> <CompiledBinaries Include=”.\bin\debug\*.dll” /> <ProjectReferences Include=”$(WSPDir)\**\*.*proj”/> …

MSBuild ItemGroup element issue Read more »

Tagged with: