1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Mono: Better versioning and gracefully unloading of Godot API assemblies

(cherry picked from commit f37090ccf4)
This commit is contained in:
Ignacio Etcheverry
2018-02-22 13:13:51 +01:00
committed by Hein-Pieter van Braam
parent 1ea805a4aa
commit dde14e15c6
14 changed files with 426 additions and 88 deletions

View File

@@ -84,10 +84,10 @@ bool GodotSharpEditor::_create_project_solution() {
return false;
}
if (!GodotSharpBuilds::make_api_sln(GodotSharpBuilds::API_CORE))
if (!GodotSharpBuilds::make_api_sln(APIAssembly::API_CORE))
return false;
if (!GodotSharpBuilds::make_api_sln(GodotSharpBuilds::API_EDITOR))
if (!GodotSharpBuilds::make_api_sln(APIAssembly::API_EDITOR))
return false;
pr.step(TTR("Done"));