diff options
| author | Rémi Verschelde | 2018-02-25 21:51:11 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-25 21:51:11 +0100 |
| commit | 7568a455397aeefc1e08600534ec4df279abab70 (patch) | |
| tree | 2ae483b9c89320bacd7e6ad1939448d9741ba0d9 /modules/mono/editor/godotsharp_editor.cpp | |
| parent | 125fc8cc4432d28e63da76c3a2aff655b1a7cc6b (diff) | |
| parent | f37090ccf4f699800a43878273b8b94b5906f4bc (diff) | |
| download | godot-7568a455397aeefc1e08600534ec4df279abab70.tar.gz godot-7568a455397aeefc1e08600534ec4df279abab70.tar.zst godot-7568a455397aeefc1e08600534ec4df279abab70.zip | |
Merge pull request #17020 from neikeq/cs-api-asm-checks
Mono: Better versioning and gracefully unloading of Godot API assemblies
Diffstat (limited to '')
| -rw-r--r-- | modules/mono/editor/godotsharp_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/editor/godotsharp_editor.cpp b/modules/mono/editor/godotsharp_editor.cpp index 0919a7355..998da8bda 100644 --- a/modules/mono/editor/godotsharp_editor.cpp +++ b/modules/mono/editor/godotsharp_editor.cpp @@ -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")); |
