Merge pull request #78466 from raulsntos/dotnet/define-constants-without-whitespace
C#: Remove whitespace from define constants
This commit is contained in:
commit
af08b17f97
1 changed files with 2 additions and 0 deletions
|
@ -81,6 +81,8 @@
|
||||||
GODOT4_1;GODOT4_1_OR_GREATER;GODOT4_0_OR_GREATER;
|
GODOT4_1;GODOT4_1_OR_GREATER;GODOT4_0_OR_GREATER;
|
||||||
GODOT4_1_0;GODOT4_1_0_OR_GREATER;
|
GODOT4_1_0;GODOT4_1_0_OR_GREATER;
|
||||||
</GodotDefineConstants>
|
</GodotDefineConstants>
|
||||||
|
<!-- Ensure the define constants don't contain whitespace (see https://github.com/dotnet/roslyn/issues/58391). -->
|
||||||
|
<GodotDefineConstants>$(GodotDefineConstants.Replace('%0A','').Replace('%0D','').Replace('%09','').Replace(' ',''))</GodotDefineConstants>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Define constant to determine the target Godot platform. This includes the
|
Define constant to determine the target Godot platform. This includes the
|
||||||
|
|
Loading…
Reference in a new issue