Skip to content

Commit 5c67cdd

Browse files
committed
Suppressed CA1063
1 parent f5ca2c4 commit 5c67cdd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

MultiTarget/Uno.props

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ItemGroup Condition="'$(IsUno)' == 'true'">
55
<PackageReference Include="Uno.UI" Version="4.6.18" />
66
</ItemGroup>
7-
7+
88
<PropertyGroup Condition="'$(IsUno)' == 'true'">
99
<UnoUIUseRoslynSourceGenerators>true</UnoUIUseRoslynSourceGenerators>
1010
</PropertyGroup>
@@ -20,11 +20,20 @@
2020
<ItemGroup Condition="'$(IsWpfHead)' == 'true'">
2121
<PackageReference Include="Uno.UI.Skia.Wpf" Version="4.6.18" />
2222
</ItemGroup>
23+
2324
<PropertyGroup Condition="'$(IsWpfHead)' == 'true'">
2425
<!-- Ignorable issue from SkiaSharp package, see: https://github.com/CommunityToolkit/Labs-Windows/pull/119#issuecomment-1125373091 -->
2526
<NoWarn>$(NoWarn);NU1701</NoWarn>
2627
</PropertyGroup>
2728

29+
<PropertyGroup>
30+
<!--
31+
Uno uses IDisposable internally, but exposes it publicly.
32+
See https://github.com/CommunityToolkit/Labs-Windows/pull/275#issuecomment-1331113635
33+
-->
34+
<NoWarn>$(NoWarn);CA1063</NoWarn>
35+
</PropertyGroup>
36+
2837
<ItemGroup Condition="'$(IsWasmHead)' == 'true'">
2938
<PackageReference Include="Uno.UI.WebAssembly" Version="4.6.18" />
3039
</ItemGroup>

0 commit comments

Comments
 (0)