-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBuildAll.proj
More file actions
30 lines (27 loc) · 1.17 KB
/
BuildAll.proj
File metadata and controls
30 lines (27 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Rebuild" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--<PropertyGroup>
<LayoutOutputFolder>$(MSBuildProjectDirectory)\..\Lib\</LayoutOutputFolder>
</PropertyGroup>-->
<!-- Current platforms -->
<ItemGroup>
<Flavor Include="Hyperstore_only.sln">
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
</Flavor>
</ItemGroup>
<Target Name="ExpandFlavors">
<CreateItem Include="@(Flavor)" AdditionalMetadata="Properties=Configuration=%(Flavor.Configuration)%3BPlatform=%(Flavor.Platform)">
<Output TaskParameter="Include" ItemName="ProjectToBuild" />
</CreateItem>
</Target>
<Target Name="Build" DependsOnTargets="ExpandFlavors">
<MSBuild Projects="@(ProjectToBuild)" Targets="Build" ContinueOnError="false" />
</Target>
<Target Name="Clean" DependsOnTargets="ExpandFlavors">
<MSBuild Projects="@(ProjectToBuild)" Targets="Clean" />
</Target>
<Target Name="Rebuild" DependsOnTargets="ExpandFlavors">
<MSBuild Projects="@(ProjectToBuild)" Targets="Rebuild" ContinueOnError="false"/>
</Target>
</Project>