-
Notifications
You must be signed in to change notification settings - Fork 66
/
TypeIndices.groupproj
48 lines (48 loc) · 1.79 KB
/
TypeIndices.groupproj
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{066AE007-9D61-481A-9023-53D6F9FAE34F}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="SimpleTypeIndex.dproj">
<Dependencies/>
</Projects>
<Projects Include="TwoLevelTypeIndex.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="SimpleTypeIndex">
<MSBuild Projects="SimpleTypeIndex.dproj"/>
</Target>
<Target Name="SimpleTypeIndex:Clean">
<MSBuild Projects="SimpleTypeIndex.dproj" Targets="Clean"/>
</Target>
<Target Name="SimpleTypeIndex:Make">
<MSBuild Projects="SimpleTypeIndex.dproj" Targets="Make"/>
</Target>
<Target Name="TwoLevelTypeIndex">
<MSBuild Projects="TwoLevelTypeIndex.dproj"/>
</Target>
<Target Name="TwoLevelTypeIndex:Clean">
<MSBuild Projects="TwoLevelTypeIndex.dproj" Targets="Clean"/>
</Target>
<Target Name="TwoLevelTypeIndex:Make">
<MSBuild Projects="TwoLevelTypeIndex.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="SimpleTypeIndex;TwoLevelTypeIndex"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="SimpleTypeIndex:Clean;TwoLevelTypeIndex:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="SimpleTypeIndex:Make;TwoLevelTypeIndex:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>