ppsspp/UWP/build_uwp.proj

20 lines
668 B
Plaintext
Raw Normal View History

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Both">
<Target Name="Both">
<MSBuild Projects="PPSSPP_UWP.sln"
2017-03-23 11:09:26 +00:00
Targets="PPSSPP_UWP:Rebuild"
Properties="Configuration=Release;Platform=Win32"
StopOnFirstFailure="true">
</MSBuild>
<MSBuild Projects="PPSSPP_UWP.sln"
2017-03-23 11:09:26 +00:00
Targets="PPSSPP_UWP:Rebuild"
Properties="Configuration=Release;Platform=x64"
StopOnFirstFailure="true">
</MSBuild>
<MSBuild Projects="PPSSPP_UWP.sln"
2017-03-23 11:09:26 +00:00
Targets="PPSSPP_UWP:Rebuild"
Properties="Configuration=Release;Platform=ARM"
StopOnFirstFailure="true">
</MSBuild>
</Target>
2017-03-23 11:09:26 +00:00
</Project>