Merge pull request #34690 from kramer425/mono-build-tools-fix

Fix msbuild target argument
This commit is contained in:
Ignacio Roldán Etcheverry 2019-12-29 23:27:06 +01:00 committed by GitHub
commit b8e8f4942d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ def build_godot_tools(source, target, env):
build_config = 'Debug' if env['target'] == 'debug' else 'Release'
# Custom build target to make sure output is always copied to the data dir.
extra_build_args = ['/Target=BuildAlwaysCopyToDataDir']
extra_build_args = ['/Target:Build;GodotTools:BuildAlwaysCopyToDataDir']
from . solution_builder import build_solution, nuget_restore
nuget_restore(env, solution_path)