Skip to content

Commit f4b594b

Browse files
committed
Minimize changes
1 parent fbbb84a commit f4b594b

1 file changed

Lines changed: 10 additions & 12 deletions

File tree

test/Sentry.Android.AssemblyReader.Tests/Sentry.Android.AssemblyReader.Tests.csproj

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,18 @@
3232
</Target>
3333
<Target Name="_InnerBuildTestAPKs">
3434
<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" />
4344
</ItemGroup>
4445

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" />
4947
</Target>
5048
<Target Name="_BuildTestAPK">
5149
<PropertyGroup>

0 commit comments

Comments
 (0)