From da737e3146c5a203e4432fdc1fb8c9a79527c647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E6=B0=B4?= <1123993881@qq.com> Date: Wed, 17 Dec 2025 12:01:30 +0800 Subject: [PATCH 1/2] fix: fixed the nullable. things. --- src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs b/src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs index 46ab840..e8961f2 100644 --- a/src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs +++ b/src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs @@ -16,7 +16,8 @@ private protected BaseName(T symbol) Symbol = symbol; _lazyFullName = new Lazy(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat)); _lazyFullNameNull = new Lazy(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat - .WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier))); + .WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | + SymbolDisplayMiscellaneousOptions.ExpandNullable))); _lazyFullNameNoGlobal = new Lazy(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat .WithGlobalNamespaceStyle(SymbolDisplayGlobalNamespaceStyle.Omitted))); _lazyMiniName = new Lazy(() => symbol.ToDisplayString(SymbolDisplayFormat.MinimallyQualifiedFormat)); From 70527d64cf68d105d5e4a8a0aa71e4310a7bc9fb Mon Sep 17 00:00:00 2001 From: nuke-bot Date: Wed, 17 Dec 2025 04:05:05 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=96=202025.12.17.0=20Released!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 4903cd2..82e429e 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,7 +1,7 @@  - 2025.12.12.2 + 2025.12.17.0 enable enable preview