From f5c3163804e4a0835b6397a296458638a8c78011 Mon Sep 17 00:00:00 2001 From: Arlo Godfrey Date: Fri, 24 Feb 2023 13:14:43 -0600 Subject: [PATCH] Fixed compiler error in release mode about internally exposed IDisposable from Uno --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 67435fc6c..21a441619 100644 --- a/.editorconfig +++ b/.editorconfig @@ -432,3 +432,6 @@ csharp_style_prefer_extended_property_pattern = true:suggestion # Require file header dotnet_diagnostic.IDE0073.severity = warning + +# Uno platform exposes IDisposable on Storyboard publicly when it should be internal. Ignore this. +dotnet_code_quality.CA1001.excluded_type_names_with_derived_types = T:Windows.UI.Xaml.Media.Animation.Storyboard