source: trunk/eraser/Eraser.msbuild @ 2647

Revision 1950, 1015 bytes checked in by lowjoel, 2 years ago (diff)

These mergeinfo properties follow the root folder of the parent, so they can be deleted.

Line 
1<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="BuildInstaller">
2    <ItemGroup>
3        <ProjectToBuild Include="Eraser.sln">
4            <AdditionalProperties>Platform=Win32</AdditionalProperties>
5        </ProjectToBuild>
6        <ProjectToBuild Include="Eraser.sln">
7            <AdditionalProperties>Platform=x64</AdditionalProperties>
8        </ProjectToBuild>
9    </ItemGroup>
10    <ItemGroup>
11        <InstallerToBuild Include="Installer\Installer.wixproj">
12            <AdditionalProperties>Platform=x86</AdditionalProperties>
13        </InstallerToBuild>
14        <InstallerToBuild Include="Installer\Installer.wixproj">
15            <AdditionalProperties>Platform=x64</AdditionalProperties>
16        </InstallerToBuild>
17    </ItemGroup>
18    <Target Name="Build">
19        <MSBuild Projects="@(ProjectToBuild)" Properties="Configuration=Release" Targets="rebuild" />
20    </Target>
21    <Target Name="BuildInstaller" DependsOnTargets="Build">
22        <MSBuild Projects="@(InstallerToBuild)" Properties="Configuration=Release" Targets="rebuild" />
23    </Target>
24</Project>
Note: See TracBrowser for help on using the repository browser.