From c503110bef37a90be85220ad6a1c6011c12fb473 Mon Sep 17 00:00:00 2001 From: "mjk.kirschner" <508936+mjkkirschner@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:52:21 -0500 Subject: [PATCH] test out supress --- src/DynamoCoreWpf/PublicAPI.Unshipped.txt | 3 ++- src/DynamoCoreWpf/UI/Converters.cs | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/DynamoCoreWpf/PublicAPI.Unshipped.txt b/src/DynamoCoreWpf/PublicAPI.Unshipped.txt index cd08503d771..36437dcaf20 100644 --- a/src/DynamoCoreWpf/PublicAPI.Unshipped.txt +++ b/src/DynamoCoreWpf/PublicAPI.Unshipped.txt @@ -3122,6 +3122,8 @@ Dynamo.ViewModels.WorkspaceViewModel.SetZoomCommand.get -> Dynamo.UI.Commands.De Dynamo.ViewModels.WorkspaceViewModel.ShowAllWiresCommand.get -> Dynamo.UI.Commands.DelegateCommand Dynamo.ViewModels.WorkspaceViewModel.ShowHideAllGeometryPreviewCommand.get -> Dynamo.UI.Commands.DelegateCommand Dynamo.ViewModels.WorkspaceViewModel.ShowInCanvasSearchCommand.get -> Dynamo.UI.Commands.DelegateCommand +Dynamo.ViewModels.WorkspaceViewModel.StopNodeViewOpacityAnimations.get -> bool +Dynamo.ViewModels.WorkspaceViewModel.StopNodeViewOpacityAnimations.set -> void Dynamo.ViewModels.WorkspaceViewModel.UnpinAllPreviewBubblesTriggered -> Dynamo.ViewModels.ViewEventHandler Dynamo.ViewModels.WorkspaceViewModel.Watch3DViewModels.get -> System.Collections.ObjectModel.ObservableCollection Dynamo.ViewModels.WorkspaceViewModel.Watch3DViewModels.set -> void @@ -5224,7 +5226,6 @@ static Dynamo.Wpf.Properties.Resources.PackageUploadStateError.get -> string static Dynamo.Wpf.Properties.Resources.PackageUploadStateReady.get -> string static Dynamo.Wpf.Properties.Resources.PackageUploadStateUploaded.get -> string static Dynamo.Wpf.Properties.Resources.PackageUploadStateUploading.get -> string -static Dynamo.Wpf.Properties.Resources.PackageUnknownCompatibilityVersionDownloadMsg.get -> string static Dynamo.Wpf.Properties.Resources.PackageUseNewerDynamoMessageBoxTitle.get -> string static Dynamo.Wpf.Properties.Resources.PackageUseOlderDynamoMessageBoxTitle.get -> string static Dynamo.Wpf.Properties.Resources.PackageViewContextMenuLoadText.get -> string diff --git a/src/DynamoCoreWpf/UI/Converters.cs b/src/DynamoCoreWpf/UI/Converters.cs index 79633d70a86..c616f4bd6f6 100644 --- a/src/DynamoCoreWpf/UI/Converters.cs +++ b/src/DynamoCoreWpf/UI/Converters.cs @@ -37,6 +37,9 @@ namespace Dynamo.Controls /// /// selects from one of two styles based on a boolean value. /// + [System.Diagnostics.CodeAnalysis.SuppressMessage("ApiDesign", + "RS0016:Add public types and members to the declared API", + Justification = "Converters are not part of the API")] public class BooleanToStyleConverter : IValueConverter { public Style TrueStyle { get; set; }