-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentProjectGroup.groupproj
More file actions
48 lines (48 loc) · 1.71 KB
/
Copy pathStudentProjectGroup.groupproj
File metadata and controls
48 lines (48 loc) · 1.71 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>{B217C095-58C9-4567-9F1A-4ADC4F3E72DA}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="StudentProject.dproj">
<Dependencies/>
</Projects>
<Projects Include="StudentDLL.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="StudentProject">
<MSBuild Projects="StudentProject.dproj"/>
</Target>
<Target Name="StudentProject:Clean">
<MSBuild Projects="StudentProject.dproj" Targets="Clean"/>
</Target>
<Target Name="StudentProject:Make">
<MSBuild Projects="StudentProject.dproj" Targets="Make"/>
</Target>
<Target Name="StudentDLL">
<MSBuild Projects="StudentDLL.dproj"/>
</Target>
<Target Name="StudentDLL:Clean">
<MSBuild Projects="StudentDLL.dproj" Targets="Clean"/>
</Target>
<Target Name="StudentDLL:Make">
<MSBuild Projects="StudentDLL.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="StudentProject;StudentDLL"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="StudentProject:Clean;StudentDLL:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="StudentProject:Make;StudentDLL:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>