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

Mono: Better versioning and gracefully unloading of Godot API assemblies

This commit is contained in:
Ignacio Etcheverry
2018-02-22 13:13:51 +01:00
parent 125fc8cc44
commit f37090ccf4
15 changed files with 429 additions and 88 deletions

View File

@@ -85,10 +85,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"));