-
Notifications
You must be signed in to change notification settings - Fork 166
/
build.proj
21 lines (21 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ConfigurationList Condition=" '@(ConfigurationList)' == '' and $(Configuration) != '' " Include="$(Configuration.Split(';'))" />
<ConfigurationList Condition=" '@(ConfigurationList)' == '' " Include="Debug" />
<PlatformList Condition=" '@(PlatformList)' == '' and $(Platform) != '' " Include="$(Platform.Split(';'))" />
<PlatformList Condition=" '@(PlatformList)' == '' " Include="Windows" />
</ItemGroup>
<ItemGroup>
<Solution Include="*.sln" />
</ItemGroup>
<Target Name="Build" Outputs="%(PlatformList.Identity)">
<PropertyGroup>
<CurrentPlatform>%(PlatformList.Identity)</CurrentPlatform>
</PropertyGroup>
<MSBuild Projects="@(Solution)"
BuildInParallel="true"
Targets="Build"
Properties="Configuration=%(ConfigurationList.Identity);Platform=$(CurrentPlatform);AllowUnsafeBlocks=true" />
</Target>
</Project>