Build mono files for the export template build without needing tools

Index: modules/mono/SCsub
--- modules/mono/SCsub.orig
+++ modules/mono/SCsub
@@ -8,7 +8,7 @@ Import("env_modules")
 
 env_mono = env_modules.Clone()
 
-if env_mono["tools"]:
+if True:
     # NOTE: It is safe to generate this file here, since this is still executed serially
     import build_scripts.gen_cs_glue_version as gen_cs_glue_version
 
@@ -33,12 +33,13 @@ env_mono = conf.Finish()
 
 mono_configure.configure(env, env_mono)
 
-if env_mono["tools"] and env_mono["mono_glue"] and env_mono["build_cil"]:
+if env_mono["mono_glue"] and env_mono["build_cil"]:
     # Build Godot API solution
     import build_scripts.api_solution_build as api_solution_build
 
     api_sln_cmd = api_solution_build.build(env_mono)
 
+if False:
     # Build GodotTools
     import build_scripts.godot_tools_build as godot_tools_build
 
