mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
14 lines
756 B
XML
14 lines
756 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="FullRebuild">
|
|
<Target Name="FullRebuild">
|
|
<ItemGroup>
|
|
<Configurations Include="%%CONFIGURATION%%"/>
|
|
<Platforms Include="%%BUILD_PLATFORMS%%"/>
|
|
<ConfigAndPlatform Include="@(Configurations)">
|
|
<Platform>%(Platforms.Identity)</Platform>
|
|
</ConfigAndPlatform>
|
|
</ItemGroup>
|
|
<MSBuild Projects="%%SOLUTION%%" Targets="Build"
|
|
Properties="Configuration=%(ConfigAndPlatform.Identity);Platform=%(ConfigAndPlatform.Platform);AppxBundle=Always;AppxBundlePlatforms=%%PACKAGE_PLATFORMS%%;UseSubFolderForOutputDirDuringMultiPlatformBuild=false"/>
|
|
</Target>
|
|
</Project>
|