forked from kami-soft/ProtoBufGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProtoBufGeneratorGroup.groupproj
72 lines (72 loc) · 3.17 KB
/
ProtoBufGeneratorGroup.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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{921B63F3-891F-4A55-BEF1-7A545FACE320}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="Generator\ProtoBufGenerator.dproj">
<Dependencies/>
</Projects>
<Projects Include="Generator\ProtoBufGeneratorConsole.dproj">
<Dependencies/>
</Projects>
<Projects Include="Generator\Test\ProtoBufGeneratorTests.dproj">
<Dependencies/>
</Projects>
<Projects Include="example2_with_Generator\ProjectExample2.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="ProtoBufGenerator">
<MSBuild Projects="Generator\ProtoBufGenerator.dproj"/>
</Target>
<Target Name="ProtoBufGenerator:Clean">
<MSBuild Projects="Generator\ProtoBufGenerator.dproj" Targets="Clean"/>
</Target>
<Target Name="ProtoBufGenerator:Make">
<MSBuild Projects="Generator\ProtoBufGenerator.dproj" Targets="Make"/>
</Target>
<Target Name="ProtoBufGeneratorConsole">
<MSBuild Projects="Generator\ProtoBufGeneratorConsole.dproj"/>
</Target>
<Target Name="ProtoBufGeneratorConsole:Clean">
<MSBuild Projects="Generator\ProtoBufGeneratorConsole.dproj" Targets="Clean"/>
</Target>
<Target Name="ProtoBufGeneratorConsole:Make">
<MSBuild Projects="Generator\ProtoBufGeneratorConsole.dproj" Targets="Make"/>
</Target>
<Target Name="ProtoBufGeneratorTests">
<MSBuild Projects="Generator\Test\ProtoBufGeneratorTests.dproj"/>
</Target>
<Target Name="ProtoBufGeneratorTests:Clean">
<MSBuild Projects="Generator\Test\ProtoBufGeneratorTests.dproj" Targets="Clean"/>
</Target>
<Target Name="ProtoBufGeneratorTests:Make">
<MSBuild Projects="Generator\Test\ProtoBufGeneratorTests.dproj" Targets="Make"/>
</Target>
<Target Name="ProjectExample2">
<MSBuild Projects="example2_with_Generator\ProjectExample2.dproj"/>
</Target>
<Target Name="ProjectExample2:Clean">
<MSBuild Projects="example2_with_Generator\ProjectExample2.dproj" Targets="Clean"/>
</Target>
<Target Name="ProjectExample2:Make">
<MSBuild Projects="example2_with_Generator\ProjectExample2.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="ProtoBufGenerator;ProtoBufGeneratorConsole;ProtoBufGeneratorTests;ProjectExample2"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="ProtoBufGenerator:Clean;ProtoBufGeneratorConsole:Clean;ProtoBufGeneratorTests:Clean;ProjectExample2:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="ProtoBufGenerator:Make;ProtoBufGeneratorConsole:Make;ProtoBufGeneratorTests:Make;ProjectExample2:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>