-
Notifications
You must be signed in to change notification settings - Fork 5
/
grpIPGeoLocation.groupproj
48 lines (48 loc) · 1.66 KB
/
grpIPGeoLocation.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>{80B645CA-CDD8-43C1-BA4F-C9EC9173A13F}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="IPGeolocation.dproj">
<Dependencies/>
</Projects>
<Projects Include="Demo\Demo.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="IPGeolocation">
<MSBuild Projects="IPGeolocation.dproj"/>
</Target>
<Target Name="IPGeolocation:Clean">
<MSBuild Projects="IPGeolocation.dproj" Targets="Clean"/>
</Target>
<Target Name="IPGeolocation:Make">
<MSBuild Projects="IPGeolocation.dproj" Targets="Make"/>
</Target>
<Target Name="Demo">
<MSBuild Projects="Demo\Demo.dproj"/>
</Target>
<Target Name="Demo:Clean">
<MSBuild Projects="Demo\Demo.dproj" Targets="Clean"/>
</Target>
<Target Name="Demo:Make">
<MSBuild Projects="Demo\Demo.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="IPGeolocation;Demo"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="IPGeolocation:Clean;Demo:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="IPGeolocation:Make;Demo:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>