vote up 0 vote down star

I have something like this in my TFSBuild.proj

<ItemGroup>
	<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProjectA/ProjectA.sln" />
	<SolutionToBuild Include="$(BuildProjectFolderPath)/../../x64 Installer/x64 Installer.sln" Condition="'$(Platform)' == 'x64' " />
	<SolutionToBuild Include="$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln" Condition="'$(Platform)' == 'x86' " />
	<ConfigurationToBuild Include="Release|x86">
		<FlavorToBuild>Release</FlavorToBuild>
		<PlatformToBuild>x86</PlatformToBuild>
	</ConfigurationToBuild>

	<ConfigurationToBuild Include="Release|x64">
		<FlavorToBuild>Release</FlavorToBuild>
		<PlatformToBuild>x64</PlatformToBuild>
	</ConfigurationToBuild>
</ItemGroup>

I want to override the BeforeCompile target to run a custom task I have written. The custom task will take the output from ProjectA and build file that is used by both installer projects (Wix project files). How to I get the BeforeCompile target to only execute for those two SolutionToBuild items? I assume this is about Target Batching (because I can then use conditions on my task, but I don't get it.

I tried adding something like this to see if it would work, but only the first solution is output to the log:

<Target Name="BeforeCompile" Outputs="%(SolutionToBuild.Identity)">
  <Message Text="Solution being built: %(SolutionToBuild.Identity)" />
</Target>
flag
Ok - I found the BeforeCompileSolution task, which is run per solution, but the only thing I see identifying the solution is $(Solution), which is the full path & filename of the solution, and doesn't compare directly with '$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln' – Peter LaComb Jr. Oct 27 at 21:18

2 Answers

vote up 1 vote down

Hi,

Why don't you compile ProjectA and prepare the needed files before you build the actual WiX installation?

<ItemGroup>
        <SolutionToBuild Include="$(BuildProjectFolderPath)/../../x64 Installer/x64 Installer.sln" Condition="'$(Platform)' == 'x64' " />
        <SolutionToBuild Include="$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln" Condition="'$(Platform)' == 'x86' " />
        <ConfigurationToBuild Include="Release|x86">
                <FlavorToBuild>Release</FlavorToBuild>
                <PlatformToBuild>x86</PlatformToBuild>
        </ConfigurationToBuild>

        <ConfigurationToBuild Include="Release|x64">
                <FlavorToBuild>Release</FlavorToBuild>
                <PlatformToBuild>x64</PlatformToBuild>
        </ConfigurationToBuild>
</ItemGroup>

<Target Name="BeforeCompile">
  <MsBuild Projects="$(BuildProjectFolderPath)/../../ProjectA/ProjectA.sln"/>
  <CallTarget Targets="PrepareWiXFiles"/>
</Target>

That way you will not need to do the nasty name checking.

A far better approach is to split this build into several small ones which will improve the maintainability. For example, you can create one build that will build ProjectA and store its outputs to a network location (or local one). Then you create a second build that will gather the output from ProjectA prepare the WiX files and build the Wix Installer.

Hope this helps.

link|flag
That is a perfectly good way to accomplish what I wanted. – Peter LaComb Jr. Oct 29 at 11:36
vote up 0 vote down check

Turns out I was making this more complicated than it needed to be. Rather than have two Wix projects, building each only when the correct platform for the project had built, I now have one wix project and I pass the platform in to it (by way of my ExecuteT4Template target). This works because the AfterCompileConfiguration Target has access to $(Platform), and is executed for each platform you build.

<ItemGroup>
	<SolutionToBuild Include="$(BuildProjectFolderPath)/../../Source/ProjectA.sln" />

	<ConfigurationToBuild Include="Release|x86">
		<FlavorToBuild>Release</FlavorToBuild>
		<PlatformToBuild>x86</PlatformToBuild>
	</ConfigurationToBuild>

	<ConfigurationToBuild Include="Release|x64">
		<FlavorToBuild>Release</FlavorToBuild>
		<PlatformToBuild>x64</PlatformToBuild>
	</ConfigurationToBuild>
</ItemGroup>

<Target Name="AfterCompileConfiguration">
	<ExecuteT4Template
		TemplatePath="$(SolutionRoot)/Installer/Installer/ProjectA  Installer.tt"
		OutputPath="$(SolutionRoot)/Installer/Installer/ProjectA Installer.wixproj"
		Properties="DropLocation=$(DropLocation)\$(BuildNumber)\$(Platform)\$(Configuration);OutputName=$(Platform)ProjectA.msi;" />
	<ExecuteT4Template
		TemplatePath="$(SolutionRoot)/Installer/Installer/ProjectA.tt"
		OutputPath="$(SolutionRoot)/Installer/Installer/ProjectA.wxs"
		Properties="Version=4.1;ProductName= ProjectA;Manufacturer=Acme;SourceDirectory=$(BinariesRoot)\$(Platform);Platform=$(Platform);" />
	<MSBuild
		Projects="$(SolutionRoot)/Installer/ProjectA Installer.sln" />
</Target>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.