diff options
| author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-10-11 01:23:35 +0200 |
|---|---|---|
| committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-10-11 01:46:06 +0200 |
| commit | 8c438a21976d701d95b375f28fd40fc85da7ef36 (patch) | |
| tree | a6ff618cd129e1c362d0ea9b820d5d351bb80ddc /modules/mono/editor/csharp_project.cpp | |
| parent | f4afaecdd1220395acd5fe1e36368ba9bb146865 (diff) | |
| download | redot-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.cpp | 2 |
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); |
