We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e49e4c commit 745ecd9Copy full SHA for 745ecd9
Plugins/CSharpCompilerSettings/CscSettingsAsset.cs
@@ -174,6 +174,8 @@ public string GetSymbolModifier(string asmdefPath)
174
sb.Append(LVersion.CSharp7_3 <= v ? "CSHARP_7_3_OR_NEWER;" : "!CSHARP_7_3_OR_NEWER;");
175
sb.Append(LVersion.CSharp8 <= v ? "CSHARP_8_OR_NEWER;" : "!CSHARP_8_OR_NEWER;");
176
sb.Append(LVersion.CSharp9 <= v ? "CSHARP_9_OR_NEWER;" : "!CSHARP_9_OR_NEWER;");
177
+
178
+ sb.Append("CUSTOM_COMPILE;");
179
}
180
181
if (!IsProjectSetting && 0 < m_SymbolModifier.Length)
0 commit comments