forked from Azure/azure-storage-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.proj
41 lines (37 loc) · 1.29 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
38
39
40
41
<?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="RestorePackages">
<Exec Command=""tools\NuGet.exe" restore "%(Solution.Identity)"" />
</Target>
<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="RestorePackages;Clean">
<Message Importance="high" Text="Building all versions of the projects..." />
<MSBuild
Projects="@(Solution)"
Targets="Build"
BuildInParallel="true" />
</Target>
</Project>