Skip to content

Commit f16985b

Browse files
committed
fix: nullable is supported in C#8.0 or later
1 parent 98515af commit f16985b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/CSharpCompilerSettings/CscSettingsAsset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public string AdditionalSymbols
194194

195195
public bool IsSupportNullable
196196
{
197-
get { return LVersion.CSharp8 < m_LanguageVersion; }
197+
get { return LVersion.CSharp8 <= m_LanguageVersion; }
198198
}
199199

200200
public static CscSettingsAsset GetAtPath(string path)

0 commit comments

Comments
 (0)