-
Notifications
You must be signed in to change notification settings - Fork 8
/
AsyncIO.groupproj
96 lines (96 loc) · 3.93 KB
/
AsyncIO.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{8660C5AD-C8D9-499D-B588-FC0D7B64BABA}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="Dev\AsyncIODev.dproj">
<Dependencies/>
</Projects>
<Projects Include="Test\AsyncIOTests.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\FileCopy\AsyncFileCopy.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\TCPEcho\AsyncEchoClient.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\HTTP\AsyncHttpClient.dproj">
<Dependencies/>
</Projects>
<Projects Include="Examples\HTTP\AsyncHttpServer.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="AsyncIODev">
<MSBuild Projects="Dev\AsyncIODev.dproj"/>
</Target>
<Target Name="AsyncIODev:Clean">
<MSBuild Projects="Dev\AsyncIODev.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncIODev:Make">
<MSBuild Projects="Dev\AsyncIODev.dproj" Targets="Make"/>
</Target>
<Target Name="AsyncIOTests">
<MSBuild Projects="Test\AsyncIOTests.dproj"/>
</Target>
<Target Name="AsyncIOTests:Clean">
<MSBuild Projects="Test\AsyncIOTests.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncIOTests:Make">
<MSBuild Projects="Test\AsyncIOTests.dproj" Targets="Make"/>
</Target>
<Target Name="AsyncFileCopy">
<MSBuild Projects="Examples\FileCopy\AsyncFileCopy.dproj"/>
</Target>
<Target Name="AsyncFileCopy:Clean">
<MSBuild Projects="Examples\FileCopy\AsyncFileCopy.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncFileCopy:Make">
<MSBuild Projects="Examples\FileCopy\AsyncFileCopy.dproj" Targets="Make"/>
</Target>
<Target Name="AsyncEchoClient">
<MSBuild Projects="Examples\TCPEcho\AsyncEchoClient.dproj"/>
</Target>
<Target Name="AsyncEchoClient:Clean">
<MSBuild Projects="Examples\TCPEcho\AsyncEchoClient.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncEchoClient:Make">
<MSBuild Projects="Examples\TCPEcho\AsyncEchoClient.dproj" Targets="Make"/>
</Target>
<Target Name="AsyncHttpClient">
<MSBuild Projects="Examples\HTTP\AsyncHttpClient.dproj"/>
</Target>
<Target Name="AsyncHttpClient:Clean">
<MSBuild Projects="Examples\HTTP\AsyncHttpClient.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncHttpClient:Make">
<MSBuild Projects="Examples\HTTP\AsyncHttpClient.dproj" Targets="Make"/>
</Target>
<Target Name="AsyncHttpServer">
<MSBuild Projects="Examples\HTTP\AsyncHttpServer.dproj"/>
</Target>
<Target Name="AsyncHttpServer:Clean">
<MSBuild Projects="Examples\HTTP\AsyncHttpServer.dproj" Targets="Clean"/>
</Target>
<Target Name="AsyncHttpServer:Make">
<MSBuild Projects="Examples\HTTP\AsyncHttpServer.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="AsyncIODev;AsyncIOTests;AsyncFileCopy;AsyncEchoClient;AsyncHttpClient;AsyncHttpServer"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="AsyncIODev:Clean;AsyncIOTests:Clean;AsyncFileCopy:Clean;AsyncEchoClient:Clean;AsyncHttpClient:Clean;AsyncHttpServer:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="AsyncIODev:Make;AsyncIOTests:Make;AsyncFileCopy:Make;AsyncEchoClient:Make;AsyncHttpClient:Make;AsyncHttpServer:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>