Skip to content

Commit 438bfed

Browse files
authored
Merge pull request #78 from Ted-Jin-Lab/development
fix: fixed the nullable. things.
2 parents 225544c + 70527d6 commit 438bfed

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
33
<PropertyGroup>
4-
<Version>2025.12.12.2</Version>
4+
<Version>2025.12.17.0</Version>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<LangVersion>preview</LangVersion>

src/libraries/TedToolkit.RoslynHelper/Names/BaseName.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ private protected BaseName(T symbol)
1616
Symbol = symbol;
1717
_lazyFullName = new Lazy<string>(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat));
1818
_lazyFullNameNull = new Lazy<string>(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat
19-
.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier)));
19+
.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier |
20+
SymbolDisplayMiscellaneousOptions.ExpandNullable)));
2021
_lazyFullNameNoGlobal = new Lazy<string>(() => symbol.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat
2122
.WithGlobalNamespaceStyle(SymbolDisplayGlobalNamespaceStyle.Omitted)));
2223
_lazyMiniName = new Lazy<string>(() => symbol.ToDisplayString(SymbolDisplayFormat.MinimallyQualifiedFormat));

0 commit comments

Comments
 (0)