We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5966fdd commit 7b62731Copy full SHA for 7b62731
1 file changed
ProjectHeads/App.Head.Uno.props
@@ -9,7 +9,17 @@
9
10
<PropertyGroup Condition="'$(IsUno)' == 'true'">
11
<!-- Code generated by Uno.UI.SourceGenerators creates AoT-unsafe code when Behaviors are used. -->
12
- <WarningsNotAsErrors>$(NoWarn);IL2026</WarningsNotAsErrors>
+ <WarningsNotAsErrors>$(WarningsNotAsErrors);IL2026</WarningsNotAsErrors>
13
+
14
+ <!--
15
+ Suppression of error Uno0006:
16
+ Type 'CommunityToolkit.App.Shared.ItemTemplates' should call 'Initialize
17
+ Component()' from its constructor (https://aka.platform.uno/UNO0006)
18
19
+ This error appeared in the gallery after updating to .NET 9, which introduced new default analyzer rules.
20
+ It is likely this error was silently present in older builds.
21
+ -->
22
+ <NoWarn>$(NoWarn);Uno0006</NoWarn>
23
</PropertyGroup>
24
25
<!--
0 commit comments