summaryrefslogtreecommitdiffstats
path: root/modules/mono/godotsharp_dirs.cpp
diff options
context:
space:
mode:
authorIgnacio Roldán Etcheverry <neikeq@users.noreply.github.com>2020-03-18 15:36:12 +0100
committerGitHub <noreply@github.com>2020-03-18 15:36:12 +0100
commit97efd33adabdcaa6dea20cedd60f9efd1bce9a5f (patch)
tree03393b5ab41c34d45a375e3b9437b048c8b4bd8d /modules/mono/godotsharp_dirs.cpp
parent4663625d11899a0744b0bbfd7e5b06ecb4e3e8ae (diff)
parent66c0b7ce98173a06b367fea85ef0ac93065f8fd5 (diff)
downloadredot-engine-97efd33adabdcaa6dea20cedd60f9efd1bce9a5f.tar.gz
Merge pull request #37145 from neikeq/issue-37128
C#: Fix uses of old Configuration names
Diffstat (limited to 'modules/mono/godotsharp_dirs.cpp')
-rw-r--r--modules/mono/godotsharp_dirs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/godotsharp_dirs.cpp b/modules/mono/godotsharp_dirs.cpp
index 47eb432490..828ab73c82 100644
--- a/modules/mono/godotsharp_dirs.cpp
+++ b/modules/mono/godotsharp_dirs.cpp
@@ -49,13 +49,13 @@ namespace GodotSharpDirs {
String _get_expected_build_config() {
#ifdef TOOLS_ENABLED
- return "Tools";
+ return "Debug";
#else
#ifdef DEBUG_ENABLED
- return "Debug";
+ return "ExportDebug";
#else
- return "Release";
+ return "ExportRelease";
#endif
#endif