-
Notifications
You must be signed in to change notification settings - Fork 148
/
build.proj
37 lines (34 loc) · 1.13 KB
/
build.proj
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
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets="Build">
<ItemGroup>
<Solution Include="build.sln" >
<Properties>Configuration=Debug;Platform=Win32</Properties>
</Solution>
<Solution Include="build.sln" >
<Properties>Configuration=Release;Platform=Win32</Properties>
</Solution>
<Solution Include="build.sln" >
<Properties>Configuration=Debug;Platform=x64</Properties>
</Solution>
<Solution Include="build.sln" >
<Properties>Configuration=Release;Platform=x64</Properties>
</Solution>
</ItemGroup>
<Target Name="Clean">
<!-- Clean the solutions -->
<Message Importance="high" Text="Cleaning all projects..." ContinueOnError="true" />
<MSBuild
Projects="@(Solution)"
Targets="Clean"
BuildInParallel="true" />
</Target>
<Target Name="Build" DependsOnTargets="Clean">
<Message Importance="high" Text="Building all versions of the projects..." />
<MSBuild
Projects="@(Solution)"
Targets="Build"
BuildInParallel="true" />
</Target>
</Project>