-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathbuild.proj
More file actions
25 lines (24 loc) · 1.38 KB
/
Copy pathbuild.proj
File metadata and controls
25 lines (24 loc) · 1.38 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">
<PropertyGroup>
<Condiguration Condition="'$(Condiguration)' == ''">Release</Condiguration>
</PropertyGroup>
<ItemGroup>
<SubprojectsToBuild Include="ep_starttiledata\ep_starttiledata.slnx" Condition="Exists('ep_starttiledata\ep_starttiledata.slnx')">
<Properties>Configuration=$(Condiguration);Platform=x64</Properties>
</SubprojectsToBuild>
<SubprojectsToBuild Include="ep_starttiledata\ep_starttiledata.slnx" Condition="Exists('ep_starttiledata\ep_starttiledata.slnx')">
<Properties>Configuration=$(Condiguration);Platform=ARM64</Properties>
</SubprojectsToBuild>
<BaseEPsToBuild Include="ExplorerPatcher.sln">
<Properties>Configuration=$(Condiguration);Platform=amd64</Properties>
</BaseEPsToBuild>
<BaseEPsToBuild Include="ExplorerPatcher.sln">
<Properties>Configuration=$(Condiguration);Platform=arm64;WithArm64XBinaries=true</Properties>
</BaseEPsToBuild>
</ItemGroup>
<Target Name="Build">
<MSBuild Projects="@(SubprojectsToBuild)" BuildInParallel="true" />
<MSBuild Projects="ExplorerPatcher.sln" Properties="Configuration=$(Condiguration);Platform=IA-32" />
<MSBuild Projects="@(BaseEPsToBuild)" BuildInParallel="true" />
</Target>
</Project>