You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
|
<ItemGroup>
|
||
|
|
<ModulesToBuild Include="$(Modules)" />
|
||
|
|
</ItemGroup>
|
||
|
|
<PropertyGroup>
|
||
|
|
<BuildInParallel Condition="'$(BuildInParallel)' == ''">true</BuildInParallel>
|
||
|
|
<Configuration Condition="'$(Configuration)' == ''">Development</Configuration>
|
||
|
|
<Verbosity>quiet</Verbosity>
|
||
|
|
<Platform>AnyCPU</Platform>
|
||
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||
|
|
<BuildProjectReferences>true</BuildProjectReferences>
|
||
|
|
</PropertyGroup>
|
||
|
|
<Target Name="Build">
|
||
|
|
<Error
|
||
|
|
Text="Unable to build Project %(ModulesToBuild.FullPath). Not a valid .csproj file."
|
||
|
|
Condition="'%(ModulesToBuild.Extension)'!='.csproj'" />
|
||
|
|
<Error
|
||
|
|
Text="Unable to build Project %(ModulesToBuild.FullPath). Project file not found."
|
||
|
|
Condition="!Exists('%(ModulesToBuild.FullPath)')" />
|
||
|
|
<MSBuild
|
||
|
|
Projects="@(ModulesToBuild)"
|
||
|
|
BuildInParallel="$(BuildInParallel)"
|
||
|
|
Targets="Build"
|
||
|
|
Properties="NoLogo=true;Verbosity=$(Verbosity);Configuration=$(Configuration);Platform=$(Platform);TreatWarningsAsErrors=$(TreatWarningsAsErrors);BuildProjectReferences=$(BuildProjectReferences)"/>
|
||
|
|
</Target>
|
||
|
|
</Project>
|