From aeff01b22044e1bb730a930b9f9a11b1ea4ec7ee Mon Sep 17 00:00:00 2001 From: Mike Wagner Date: Sat, 9 Aug 2025 11:29:59 -0400 Subject: [PATCH] Reenabled EnablePackageValidation, fixed warning CS1587 on TextString --- Source/SVGImage/DotNetProjects.SVGImage.csproj | 2 +- Source/SVGImage/SVG/Shapes/TextString.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/SVGImage/DotNetProjects.SVGImage.csproj b/Source/SVGImage/DotNetProjects.SVGImage.csproj index 414995a..e704de2 100644 --- a/Source/SVGImage/DotNetProjects.SVGImage.csproj +++ b/Source/SVGImage/DotNetProjects.SVGImage.csproj @@ -29,7 +29,7 @@ images\dotnetprojects.png svg wpf svg-icons svg-to-png svg-to-xaml svgimage svgimage-control Readme.md - + false 5.1.0 diff --git a/Source/SVGImage/SVG/Shapes/TextString.cs b/Source/SVGImage/SVG/Shapes/TextString.cs index 4dc907f..bc0277f 100644 --- a/Source/SVGImage/SVG/Shapes/TextString.cs +++ b/Source/SVGImage/SVG/Shapes/TextString.cs @@ -4,10 +4,10 @@ using System.Text.RegularExpressions; using System.Diagnostics; - [DebuggerDisplay("{Text}")] /// /// The leaf of the Text tree /// + [DebuggerDisplay("{Text}")] public class TextString : ITextChild { private static readonly Regex _trimmedWhitespace = new Regex(@"\s+", RegexOptions.Compiled | RegexOptions.Singleline);