-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCFX Development Group.groupproj
More file actions
48 lines (48 loc) · 1.72 KB
/
CFX Development Group.groupproj
File metadata and controls
48 lines (48 loc) · 1.72 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{54EBF4A5-D10E-4E74-8905-F51DC4399505}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="CodFluentUX.dproj">
<Dependencies/>
</Projects>
<Projects Include="Test\FluentUXTest.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="CodFluentUX">
<MSBuild Projects="CodFluentUX.dproj"/>
</Target>
<Target Name="CodFluentUX:Clean">
<MSBuild Projects="CodFluentUX.dproj" Targets="Clean"/>
</Target>
<Target Name="CodFluentUX:Make">
<MSBuild Projects="CodFluentUX.dproj" Targets="Make"/>
</Target>
<Target Name="FluentUXTest">
<MSBuild Projects="Test\FluentUXTest.dproj"/>
</Target>
<Target Name="FluentUXTest:Clean">
<MSBuild Projects="Test\FluentUXTest.dproj" Targets="Clean"/>
</Target>
<Target Name="FluentUXTest:Make">
<MSBuild Projects="Test\FluentUXTest.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="CodFluentUX;FluentUXTest"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="CodFluentUX:Clean;FluentUXTest:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="CodFluentUX:Make;FluentUXTest:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>