mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 13:43:15 +00:00
Merge pull request #72849 from RedworkDE/net-export-settings
C#: Rename export settings `mono` -> `dotnet` and remove unused AOT settings
This commit is contained in:
commit
b53c4dda62
@ -24,19 +24,7 @@ namespace GodotTools.Export
|
||||
public void RegisterExportSettings()
|
||||
{
|
||||
// TODO: These would be better as export preset options, but that doesn't seem to be supported yet
|
||||
|
||||
GlobalDef("mono/export/include_scripts_content", false);
|
||||
|
||||
GlobalDef("mono/export/aot/enabled", false);
|
||||
GlobalDef("mono/export/aot/full_aot", false);
|
||||
GlobalDef("mono/export/aot/use_interpreter", true);
|
||||
|
||||
// --aot or --aot=opt1,opt2 (use 'mono --aot=help AuxAssembly.dll' to list AOT options)
|
||||
GlobalDef("mono/export/aot/extra_aot_options", Array.Empty<string>());
|
||||
// --optimize/-O=opt1,opt2 (use 'mono --list-opt'' to list optimize options)
|
||||
GlobalDef("mono/export/aot/extra_optimizer_options", Array.Empty<string>());
|
||||
|
||||
GlobalDef("mono/export/aot/android_toolchain_path", "");
|
||||
GlobalDef("dotnet/export/include_scripts_content", false);
|
||||
}
|
||||
|
||||
private string _maybeLastExportError;
|
||||
@ -56,7 +44,7 @@ namespace GodotTools.Export
|
||||
|
||||
// TODO What if the source file is not part of the game's C# project
|
||||
|
||||
bool includeScriptsContent = (bool)ProjectSettings.GetSetting("mono/export/include_scripts_content");
|
||||
bool includeScriptsContent = (bool)ProjectSettings.GetSetting("dotnet/export/include_scripts_content");
|
||||
|
||||
if (!includeScriptsContent)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user