summaryrefslogtreecommitdiff
path: root/modules/mono/build_scripts/solution_builder.py
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-09 21:59:32 +0200
committerGitHub <noreply@github.com>2019-07-09 21:59:32 +0200
commitd2e620b8fcd21aaca2cbf8716edea550d3f02537 (patch)
tree3bba9e762601bc8d794f0ff7429b845ea1c76a2b /modules/mono/build_scripts/solution_builder.py
parentff0554d05502644b8c898be5be5d73c59a744f34 (diff)
parent4af03e52bdd7f4fd60a8f77d714c403d9f49177c (diff)
Merge pull request #30463 from neikeq/fix-search-dirs
Fix export templates ignoring assemblies in 'res://.mono/assemblies'
Diffstat (limited to 'modules/mono/build_scripts/solution_builder.py')
-rw-r--r--modules/mono/build_scripts/solution_builder.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/mono/build_scripts/solution_builder.py b/modules/mono/build_scripts/solution_builder.py
index 9f549a10ed..147dce45d9 100644
--- a/modules/mono/build_scripts/solution_builder.py
+++ b/modules/mono/build_scripts/solution_builder.py
@@ -112,6 +112,11 @@ def find_msbuild_windows(env):
mono_bin_dir = os.path.join(mono_root, 'bin')
msbuild_mono = os.path.join(mono_bin_dir, 'msbuild.bat')
+ msbuild_tools_path = find_msbuild_tools_path_reg()
+
+ if msbuild_tools_path:
+ return (os.path.join(msbuild_tools_path, 'MSBuild.exe'), framework_path, {})
+
if os.path.isfile(msbuild_mono):
# The (Csc/Vbc/Fsc)ToolExe environment variables are required when
# building with Mono's MSBuild. They must point to the batch files
@@ -123,11 +128,6 @@ def find_msbuild_windows(env):
}
return (msbuild_mono, framework_path, mono_msbuild_env)
- msbuild_tools_path = find_msbuild_tools_path_reg()
-
- if msbuild_tools_path:
- return (os.path.join(msbuild_tools_path, 'MSBuild.exe'), framework_path, {})
-
return None