From bad8a4390bf15b985f246d423c24bbfc3cfbb725 Mon Sep 17 00:00:00 2001 From: Lehonti Ramos Date: Tue, 8 Aug 2023 01:30:09 +0200 Subject: [PATCH 1/6] Sealed exception types in `XamlMath.Shared\Exceptions` --- .../TexCharacterMappingNotFoundException.cs | 9 ++++---- .../Exceptions/TexException.cs | 21 +++++++++---------- .../Exceptions/TexNotSupportedException.cs | 9 ++++---- .../Exceptions/TexParseException.cs | 19 ++++++++--------- .../TextStyleMappingNotFoundException.cs | 11 +++++----- .../Exceptions/TypeFaceNotFoundException.cs | 9 ++++---- 6 files changed, 36 insertions(+), 42 deletions(-) diff --git a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs index a34e224a..02cea02d 100644 --- a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexCharacterMappingNotFoundException : TexException { - public class TexCharacterMappingNotFoundException : TexException + public TexCharacterMappingNotFoundException(string message) : base(message) { - public TexCharacterMappingNotFoundException(string message) : base(message) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TexException.cs b/src/XamlMath.Shared/Exceptions/TexException.cs index 431c3aa6..4b3be10f 100644 --- a/src/XamlMath.Shared/Exceptions/TexException.cs +++ b/src/XamlMath.Shared/Exceptions/TexException.cs @@ -1,19 +1,18 @@ using System; -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public abstract class TexException : Exception { - public abstract class TexException : Exception + public TexException() { - public TexException() - { - } + } - public TexException(string message) : base(message) - { - } + public TexException(string message) : base(message) + { + } - public TexException(string message, Exception innerException) : base(message, innerException) - { - } + public TexException(string message, Exception innerException) : base(message, innerException) + { } } diff --git a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs index 41e48302..c3d080b2 100644 --- a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs +++ b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexNotSupportedException : TexException { - public class TexNotSupportedException : TexException + public TexNotSupportedException(string message) : base(message) { - public TexNotSupportedException(string message) : base(message) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TexParseException.cs b/src/XamlMath.Shared/Exceptions/TexParseException.cs index 31d8da18..8c97a0c6 100644 --- a/src/XamlMath.Shared/Exceptions/TexParseException.cs +++ b/src/XamlMath.Shared/Exceptions/TexParseException.cs @@ -1,17 +1,16 @@ using System; -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexParseException : TexException { - public class TexParseException : TexException + internal TexParseException(string message) + : base(message) { - internal TexParseException(string message) - : base(message) - { - } + } - internal TexParseException(string message, Exception innerException) - : base(message, innerException) - { - } + internal TexParseException(string message, Exception innerException) + : base(message, innerException) + { } } diff --git a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs index d1c37683..721a8811 100644 --- a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs @@ -1,10 +1,9 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TextStyleMappingNotFoundException : TexException { - public class TextStyleMappingNotFoundException : TexException + internal TextStyleMappingNotFoundException(string textStyleName) + : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) { - internal TextStyleMappingNotFoundException(string textStyleName) - : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs index bde76301..21834b68 100644 --- a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TypeFaceNotFoundException : TexException { - public class TypeFaceNotFoundException : TexException + public TypeFaceNotFoundException(string message) : base(message) { - public TypeFaceNotFoundException(string message) : base(message) - { - } } } From c264db538f6f4d5d88e98695f648fdbd1cfda064 Mon Sep 17 00:00:00 2001 From: Lehonti Ramos Date: Tue, 8 Aug 2023 01:36:30 +0200 Subject: [PATCH 2/6] Not using file-scoped namespace for now --- .../TexCharacterMappingNotFoundException.cs | 9 ++++---- .../Exceptions/TexException.cs | 21 ++++++++++--------- .../Exceptions/TexNotSupportedException.cs | 9 ++++---- .../Exceptions/TexParseException.cs | 19 +++++++++-------- .../TextStyleMappingNotFoundException.cs | 11 +++++----- .../Exceptions/TypeFaceNotFoundException.cs | 9 ++++---- 6 files changed, 42 insertions(+), 36 deletions(-) diff --git a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs index 02cea02d..186bf462 100644 --- a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs @@ -1,8 +1,9 @@ -namespace XamlMath.Exceptions; - -public sealed class TexCharacterMappingNotFoundException : TexException +namespace XamlMath.Exceptions { - public TexCharacterMappingNotFoundException(string message) : base(message) + public sealed class TexCharacterMappingNotFoundException : TexException { + public TexCharacterMappingNotFoundException(string message) : base(message) + { + } } } diff --git a/src/XamlMath.Shared/Exceptions/TexException.cs b/src/XamlMath.Shared/Exceptions/TexException.cs index 4b3be10f..431c3aa6 100644 --- a/src/XamlMath.Shared/Exceptions/TexException.cs +++ b/src/XamlMath.Shared/Exceptions/TexException.cs @@ -1,18 +1,19 @@ using System; -namespace XamlMath.Exceptions; - -public abstract class TexException : Exception +namespace XamlMath.Exceptions { - public TexException() + public abstract class TexException : Exception { - } + public TexException() + { + } - public TexException(string message) : base(message) - { - } + public TexException(string message) : base(message) + { + } - public TexException(string message, Exception innerException) : base(message, innerException) - { + public TexException(string message, Exception innerException) : base(message, innerException) + { + } } } diff --git a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs index c3d080b2..2917ada5 100644 --- a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs +++ b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs @@ -1,8 +1,9 @@ -namespace XamlMath.Exceptions; - -public sealed class TexNotSupportedException : TexException +namespace XamlMath.Exceptions { - public TexNotSupportedException(string message) : base(message) + public sealed class TexNotSupportedException : TexException { + public TexNotSupportedException(string message) : base(message) + { + } } } diff --git a/src/XamlMath.Shared/Exceptions/TexParseException.cs b/src/XamlMath.Shared/Exceptions/TexParseException.cs index 8c97a0c6..709629c9 100644 --- a/src/XamlMath.Shared/Exceptions/TexParseException.cs +++ b/src/XamlMath.Shared/Exceptions/TexParseException.cs @@ -1,16 +1,17 @@ using System; -namespace XamlMath.Exceptions; - -public sealed class TexParseException : TexException +namespace XamlMath.Exceptions { - internal TexParseException(string message) - : base(message) + public sealed class TexParseException : TexException { - } + internal TexParseException(string message) + : base(message) + { + } - internal TexParseException(string message, Exception innerException) - : base(message, innerException) - { + internal TexParseException(string message, Exception innerException) + : base(message, innerException) + { + } } } diff --git a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs index 721a8811..a62f14b1 100644 --- a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs @@ -1,9 +1,10 @@ -namespace XamlMath.Exceptions; - -public sealed class TextStyleMappingNotFoundException : TexException +namespace XamlMath.Exceptions { - internal TextStyleMappingNotFoundException(string textStyleName) - : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) + public sealed class TextStyleMappingNotFoundException : TexException { + internal TextStyleMappingNotFoundException(string textStyleName) + : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) + { + } } } diff --git a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs index 21834b68..d1302463 100644 --- a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs @@ -1,8 +1,9 @@ -namespace XamlMath.Exceptions; - -public sealed class TypeFaceNotFoundException : TexException +namespace XamlMath.Exceptions { - public TypeFaceNotFoundException(string message) : base(message) + public sealed class TypeFaceNotFoundException : TexException { + public TypeFaceNotFoundException(string message) : base(message) + { + } } } From b72843f131805fa1fa8fa798fa785eeef1606cd2 Mon Sep 17 00:00:00 2001 From: Lehonti Ramos Date: Tue, 8 Aug 2023 01:38:37 +0200 Subject: [PATCH 3/6] Revert "Not using file-scoped namespace for now" This reverts commit c264db538f6f4d5d88e98695f648fdbd1cfda064. --- .../TexCharacterMappingNotFoundException.cs | 9 ++++---- .../Exceptions/TexException.cs | 21 +++++++++---------- .../Exceptions/TexNotSupportedException.cs | 9 ++++---- .../Exceptions/TexParseException.cs | 19 ++++++++--------- .../TextStyleMappingNotFoundException.cs | 11 +++++----- .../Exceptions/TypeFaceNotFoundException.cs | 9 ++++---- 6 files changed, 36 insertions(+), 42 deletions(-) diff --git a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs index 186bf462..02cea02d 100644 --- a/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TexCharacterMappingNotFoundException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexCharacterMappingNotFoundException : TexException { - public sealed class TexCharacterMappingNotFoundException : TexException + public TexCharacterMappingNotFoundException(string message) : base(message) { - public TexCharacterMappingNotFoundException(string message) : base(message) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TexException.cs b/src/XamlMath.Shared/Exceptions/TexException.cs index 431c3aa6..4b3be10f 100644 --- a/src/XamlMath.Shared/Exceptions/TexException.cs +++ b/src/XamlMath.Shared/Exceptions/TexException.cs @@ -1,19 +1,18 @@ using System; -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public abstract class TexException : Exception { - public abstract class TexException : Exception + public TexException() { - public TexException() - { - } + } - public TexException(string message) : base(message) - { - } + public TexException(string message) : base(message) + { + } - public TexException(string message, Exception innerException) : base(message, innerException) - { - } + public TexException(string message, Exception innerException) : base(message, innerException) + { } } diff --git a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs index 2917ada5..c3d080b2 100644 --- a/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs +++ b/src/XamlMath.Shared/Exceptions/TexNotSupportedException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexNotSupportedException : TexException { - public sealed class TexNotSupportedException : TexException + public TexNotSupportedException(string message) : base(message) { - public TexNotSupportedException(string message) : base(message) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TexParseException.cs b/src/XamlMath.Shared/Exceptions/TexParseException.cs index 709629c9..8c97a0c6 100644 --- a/src/XamlMath.Shared/Exceptions/TexParseException.cs +++ b/src/XamlMath.Shared/Exceptions/TexParseException.cs @@ -1,17 +1,16 @@ using System; -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TexParseException : TexException { - public sealed class TexParseException : TexException + internal TexParseException(string message) + : base(message) { - internal TexParseException(string message) - : base(message) - { - } + } - internal TexParseException(string message, Exception innerException) - : base(message, innerException) - { - } + internal TexParseException(string message, Exception innerException) + : base(message, innerException) + { } } diff --git a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs index a62f14b1..721a8811 100644 --- a/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TextStyleMappingNotFoundException.cs @@ -1,10 +1,9 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TextStyleMappingNotFoundException : TexException { - public sealed class TextStyleMappingNotFoundException : TexException + internal TextStyleMappingNotFoundException(string textStyleName) + : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) { - internal TextStyleMappingNotFoundException(string textStyleName) - : base(string.Format("Cannot find mapping for the style with name '{0}'.", textStyleName)) - { - } } } diff --git a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs index d1302463..21834b68 100644 --- a/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs +++ b/src/XamlMath.Shared/Exceptions/TypeFaceNotFoundException.cs @@ -1,9 +1,8 @@ -namespace XamlMath.Exceptions +namespace XamlMath.Exceptions; + +public sealed class TypeFaceNotFoundException : TexException { - public sealed class TypeFaceNotFoundException : TexException + public TypeFaceNotFoundException(string message) : base(message) { - public TypeFaceNotFoundException(string message) : base(message) - { - } } } From 831563bbb17fff38eae99442594a1673bee4abb5 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Tue, 8 Aug 2023 23:11:08 +0200 Subject: [PATCH 4/6] Update API definitions --- api/XamlMath.Shared.net462.verified.cs | 10 +++++----- api/XamlMath.Shared.net6.0.verified.cs | 10 +++++----- api/XamlMath.Shared.netstandard2.0.verified.cs | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/api/XamlMath.Shared.net462.verified.cs b/api/XamlMath.Shared.net462.verified.cs index 449e815b..662e36a3 100644 --- a/api/XamlMath.Shared.net462.verified.cs +++ b/api/XamlMath.Shared.net462.verified.cs @@ -252,7 +252,7 @@ public static partial class StandardColorParsers } namespace XamlMath.Exceptions { - public partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException { public TexCharacterMappingNotFoundException(string message) { } } @@ -262,19 +262,19 @@ public TexException() { } public TexException(string message) { } public TexException(string message, System.Exception innerException) { } } - public partial class TexNotSupportedException : XamlMath.Exceptions.TexException + public sealed partial class TexNotSupportedException : XamlMath.Exceptions.TexException { public TexNotSupportedException(string message) { } } - public partial class TexParseException : XamlMath.Exceptions.TexException + public sealed partial class TexParseException : XamlMath.Exceptions.TexException { internal TexParseException() { } } - public partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException { internal TextStyleMappingNotFoundException() { } } - public partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException { public TypeFaceNotFoundException(string message) { } } diff --git a/api/XamlMath.Shared.net6.0.verified.cs b/api/XamlMath.Shared.net6.0.verified.cs index 449e815b..662e36a3 100644 --- a/api/XamlMath.Shared.net6.0.verified.cs +++ b/api/XamlMath.Shared.net6.0.verified.cs @@ -252,7 +252,7 @@ public static partial class StandardColorParsers } namespace XamlMath.Exceptions { - public partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException { public TexCharacterMappingNotFoundException(string message) { } } @@ -262,19 +262,19 @@ public TexException() { } public TexException(string message) { } public TexException(string message, System.Exception innerException) { } } - public partial class TexNotSupportedException : XamlMath.Exceptions.TexException + public sealed partial class TexNotSupportedException : XamlMath.Exceptions.TexException { public TexNotSupportedException(string message) { } } - public partial class TexParseException : XamlMath.Exceptions.TexException + public sealed partial class TexParseException : XamlMath.Exceptions.TexException { internal TexParseException() { } } - public partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException { internal TextStyleMappingNotFoundException() { } } - public partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException { public TypeFaceNotFoundException(string message) { } } diff --git a/api/XamlMath.Shared.netstandard2.0.verified.cs b/api/XamlMath.Shared.netstandard2.0.verified.cs index 449e815b..662e36a3 100644 --- a/api/XamlMath.Shared.netstandard2.0.verified.cs +++ b/api/XamlMath.Shared.netstandard2.0.verified.cs @@ -252,7 +252,7 @@ public static partial class StandardColorParsers } namespace XamlMath.Exceptions { - public partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TexCharacterMappingNotFoundException : XamlMath.Exceptions.TexException { public TexCharacterMappingNotFoundException(string message) { } } @@ -262,19 +262,19 @@ public TexException() { } public TexException(string message) { } public TexException(string message, System.Exception innerException) { } } - public partial class TexNotSupportedException : XamlMath.Exceptions.TexException + public sealed partial class TexNotSupportedException : XamlMath.Exceptions.TexException { public TexNotSupportedException(string message) { } } - public partial class TexParseException : XamlMath.Exceptions.TexException + public sealed partial class TexParseException : XamlMath.Exceptions.TexException { internal TexParseException() { } } - public partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TextStyleMappingNotFoundException : XamlMath.Exceptions.TexException { internal TextStyleMappingNotFoundException() { } } - public partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException + public sealed partial class TypeFaceNotFoundException : XamlMath.Exceptions.TexException { public TypeFaceNotFoundException(string message) { } } From ae757b53a2f46e2eb6753f57ffd0eb9809d50c15 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Tue, 8 Aug 2023 23:14:50 +0200 Subject: [PATCH 5/6] Docs: mention the changed exception types --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff175b32..4e60082e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html). +## [Unreleased] (2.1.1) +### Changed +- The exception classes are now `sealed` (should not break anything, since there never was any sense in extending them in the user code). + ## [2.1.0] - 2023-07-15 ### Changed - AvaloniaMath is now based on (and thus compatible with) Avalonia 11. From c1d8b5d47997b3e4a02e2fe8fb90ec79d66d93e6 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Tue, 8 Aug 2023 23:24:56 +0200 Subject: [PATCH 6/6] Tests: update to the new SDK --- api/WpfMath.net462.verified.cs | 4 ++-- api/WpfMath.net6.0.verified.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/WpfMath.net462.verified.cs b/api/WpfMath.net462.verified.cs index bee75329..dba98602 100644 --- a/api/WpfMath.net462.verified.cs +++ b/api/WpfMath.net462.verified.cs @@ -37,10 +37,10 @@ public FormulaControl() { } public int SelectionLength { get { throw null; } set { } } public int SelectionStart { get { throw null; } set { } } public string SystemTextFontName { get { throw null; } set { } } - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.9.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.10.0")] [System.Diagnostics.DebuggerNonUserCodeAttribute] public void InitializeComponent() { } - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.9.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.10.0")] [System.ComponentModel.EditorBrowsableAttribute(1)] [System.Diagnostics.DebuggerNonUserCodeAttribute] void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { } diff --git a/api/WpfMath.net6.0.verified.cs b/api/WpfMath.net6.0.verified.cs index b914862e..a8b56647 100644 --- a/api/WpfMath.net6.0.verified.cs +++ b/api/WpfMath.net6.0.verified.cs @@ -37,10 +37,10 @@ public FormulaControl() { } public int SelectionLength { get { throw null; } set { } } public int SelectionStart { get { throw null; } set { } } public string SystemTextFontName { get { throw null; } set { } } - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.9.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.10.0")] [System.Diagnostics.DebuggerNonUserCodeAttribute] public void InitializeComponent() { } - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.9.0")] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.10.0")] [System.ComponentModel.EditorBrowsableAttribute(1)] [System.Diagnostics.DebuggerNonUserCodeAttribute] void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { }