-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildAllCoffeeUniversal.proj
More file actions
25 lines (25 loc) · 1.11 KB
/
BuildAllCoffeeUniversal.proj
File metadata and controls
25 lines (25 loc) · 1.11 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Debug;Platform=ARM</Properties>
</ProjectToBuild>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Debug;Platform=x64</Properties>
</ProjectToBuild>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Debug;Platform=x86</Properties>
</ProjectToBuild>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Release;Platform=ARM</Properties>
</ProjectToBuild>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Release;Platform=x64</Properties>
</ProjectToBuild>
<ProjectToBuild Include="CoffeeUniversal.sln">
<Properties>Configuration=Release;Platform=x86</Properties>
</ProjectToBuild>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(ProjectToBuild)" BuildInParallel="true" />
</Target>
</Project>