Skip to content

Commit 6cb0db9

Browse files
committedMar 8, 2021
Apply override rules to iOS/Android test projects
1 parent d2bc48e commit 6cb0db9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎osu.Game.Tests.Android/osu.Game.Tests.Android.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
<ItemGroup>
2121
<None Include="Properties\AndroidManifest.xml" />
2222
</ItemGroup>
23+
<PropertyGroup>
24+
<NoWarn>$(NoWarn);CA2007</NoWarn>
25+
</PropertyGroup>
2326
<ItemGroup>
2427
<Compile Include="..\osu.Game.Tests\**\Beatmaps\**\*.cs">
2528
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
@@ -74,4 +77,4 @@
7477
<PackageReference Include="Moq" Version="4.16.1" />
7578
</ItemGroup>
7679
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
77-
</Project>
80+
</Project>

‎osu.Game.Tests.iOS/osu.Game.Tests.iOS.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
2222
</Compile>
2323
</ItemGroup>
24+
<PropertyGroup>
25+
<NoWarn>$(NoWarn);CA2007</NoWarn>
26+
</PropertyGroup>
2427
<ItemGroup Label="Project References">
2528
<ProjectReference Include="..\osu.Game\osu.Game.csproj">
2629
<Project>{2A66DD92-ADB1-4994-89E2-C94E04ACDA0D}</Project>
@@ -48,4 +51,4 @@
4851
<PackageReference Include="Moq" Version="4.16.1" />
4952
</ItemGroup>
5053
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
51-
</Project>
54+
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.