Avoid trying to load non-existent assembly

If the project assembly does not exist, return `false` directly instead
of trying to load it.
This prevents the `System.InvalidOperationException` thrown for failing
to locate managed application.
This commit is contained in:
Raul Santos 2022-08-22 11:48:12 +02:00
parent 8a1e598011
commit c56b157c61
No known key found for this signature in database
GPG Key ID: B532473AE3A803E4

View File

@ -517,6 +517,10 @@ bool GDMono::_load_project_assembly() {
.plus_file(assembly_name + ".dll");
assembly_path = ProjectSettings::get_singleton()->globalize_path(assembly_path);
if (!FileAccess::exists(assembly_path)) {
return false;
}
String loaded_assembly_path;
bool success = plugin_callbacks.LoadProjectAssemblyCallback(assembly_path.utf16(), &loaded_assembly_path);