-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPropertyList.groupproj
More file actions
executable file
·60 lines (60 loc) · 2.47 KB
/
PropertyList.groupproj
File metadata and controls
executable file
·60 lines (60 loc) · 2.47 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{1CECF206-8D3F-4A5D-820E-EDFF1EC82E2F}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="PropertyList.Tests\PropertyList.Tests.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\SimplePList\SimplePList.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\ModPList\ModPList.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="PropertyList_Tests">
<MSBuild Projects="PropertyList.Tests\PropertyList.Tests.dproj"/>
</Target>
<Target Name="PropertyList_Tests:Clean">
<MSBuild Projects="PropertyList.Tests\PropertyList.Tests.dproj" Targets="Clean"/>
</Target>
<Target Name="PropertyList_Tests:Make">
<MSBuild Projects="PropertyList.Tests\PropertyList.Tests.dproj" Targets="Make"/>
</Target>
<Target Name="SimplePList">
<MSBuild Projects="Examples\SimplePList\SimplePList.dproj"/>
</Target>
<Target Name="SimplePList:Clean">
<MSBuild Projects="Examples\SimplePList\SimplePList.dproj" Targets="Clean"/>
</Target>
<Target Name="SimplePList:Make">
<MSBuild Projects="Examples\SimplePList\SimplePList.dproj" Targets="Make"/>
</Target>
<Target Name="ModPList">
<MSBuild Projects="Examples\ModPList\ModPList.dproj"/>
</Target>
<Target Name="ModPList:Clean">
<MSBuild Projects="Examples\ModPList\ModPList.dproj" Targets="Clean"/>
</Target>
<Target Name="ModPList:Make">
<MSBuild Projects="Examples\ModPList\ModPList.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="PropertyList_Tests;SimplePList;ModPList"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="PropertyList_Tests:Clean;SimplePList:Clean;ModPList:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="PropertyList_Tests:Make;SimplePList:Make;ModPList:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>