summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/csharp_project.cpp
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-10-11 01:23:35 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-10-11 01:46:06 +0200
commit8c438a21976d701d95b375f28fd40fc85da7ef36 (patch)
treea6ff618cd129e1c362d0ea9b820d5d351bb80ddc /modules/mono/editor/csharp_project.cpp
parentf4afaecdd1220395acd5fe1e36368ba9bb146865 (diff)
downloadredot-engine-8c438a21976d701d95b375f28fd40fc85da7ef36.tar.gz
C#: Fix detection of outdated release Godot API assemblies
Diffstat (limited to 'modules/mono/editor/csharp_project.cpp')
-rw-r--r--modules/mono/editor/csharp_project.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/csharp_project.cpp b/modules/mono/editor/csharp_project.cpp
index 0e6c58c9d7..748447005f 100644
--- a/modules/mono/editor/csharp_project.cpp
+++ b/modules/mono/editor/csharp_project.cpp
@@ -75,7 +75,7 @@ bool generate_api_solution(const String &p_solution_dir, const String &p_core_pr
p_editor_proj_dir, p_editor_compile_items,
GDMono::get_singleton()->get_tools_project_editor_assembly());
} else {
- MonoDomain *temp_domain = GDMonoUtils::create_domain("GodotEngine.ApiSolutionGenerationDomain");
+ MonoDomain *temp_domain = GDMonoUtils::create_domain("GodotEngine.Domain.ApiSolutionGeneration");
CRASH_COND(temp_domain == NULL);
_GDMONO_SCOPE_EXIT_DOMAIN_UNLOAD_(temp_domain);