|
32 | 32 | </Target> |
33 | 33 | <Target Name="_InnerBuildTestAPKs"> |
34 | 34 | <ItemGroup> |
35 | | - <_TestAPK Include="1" Aot="False" Store="False" Compressed="False" /> |
36 | | - <_TestAPK Include="2" Aot="False" Store="False" Compressed="True" /> |
37 | | - <_TestAPK Include="3" Aot="False" Store="True" Compressed="False" /> |
38 | | - <_TestAPK Include="4" Aot="False" Store="True" Compressed="True" /> |
39 | | - <_TestAPK Include="5" Aot="True" Store="False" Compressed="False" Condition="!$(TargetFramework.StartsWith('net8'))" /> |
40 | | - <_TestAPK Include="6" Aot="True" Store="False" Compressed="True" Condition="!$(TargetFramework.StartsWith('net8'))" /> |
41 | | - <_TestAPK Include="7" Aot="True" Store="True" Compressed="False" Condition="!$(TargetFramework.StartsWith('net8'))" /> |
42 | | - <_TestAPK Include="8" Aot="True" Store="True" Compressed="True" Condition="!$(TargetFramework.StartsWith('net8'))" /> |
| 35 | + <_TestAPK Include="1" Properties="_Aot=False;_Store=False;_Compressed=False" /> |
| 36 | + <_TestAPK Include="2" Properties="_Aot=False;_Store=False;_Compressed=True" /> |
| 37 | + <_TestAPK Include="3" Properties="_Aot=False;_Store=True;_Compressed=False" /> |
| 38 | + <_TestAPK Include="4" Properties="_Aot=False;_Store=True;_Compressed=True" /> |
| 39 | + |
| 40 | + <_TestAPK Include="5" Condition="!$(TargetFramework.StartsWith('net8'))" Properties="_Aot=True;_Store=False;_Compressed=False" /> |
| 41 | + <_TestAPK Include="6" Condition="!$(TargetFramework.StartsWith('net8'))" Properties="_Aot=True;_Store=False;_Compressed=True" /> |
| 42 | + <_TestAPK Include="7" Condition="!$(TargetFramework.StartsWith('net8'))" Properties="_Aot=True;_Store=True;_Compressed=False" /> |
| 43 | + <_TestAPK Include="8" Condition="!$(TargetFramework.StartsWith('net8'))" Properties="_Aot=True;_Store=True;_Compressed=True" /> |
43 | 44 | </ItemGroup> |
44 | 45 |
|
45 | | - <MSBuild Projects="$(MSBuildProjectFile)" |
46 | | - Targets="_BuildTestAPK" |
47 | | - Properties="_Aot=%(_TestAPK.Aot);_Store=%(_TestAPK.Store);_Compressed=%(_TestAPK.Compressed)" |
48 | | - BuildInParallel="false" /> |
| 46 | + <MSBuild Projects="$(MSBuildProjectFile)" Targets="_BuildTestAPK" Properties="%(_TestAPK.Properties)" BuildInParallel="false" /> |
49 | 47 | </Target> |
50 | 48 | <Target Name="_BuildTestAPK"> |
51 | 49 | <PropertyGroup> |
|
0 commit comments