From dcf1dc4fe02bbebe86cb13168596a1d3d1d67371 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Sun, 10 May 2020 22:56:35 +0200 Subject: C#: Support for building with the dotnet CLI By adding a reference to the 'Microsoft.NETFramework.ReferenceAssemblies' nuget package, we can build projects targeting .NET Framework with the dotnet CLI. By referencing this package we also don't need to install Mono on Linux/macOS or .NET Framework on Windows, as the assemblies are taken from the package. --- modules/mono/build_scripts/godot_tools_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/mono/build_scripts/godot_tools_build.py') diff --git a/modules/mono/build_scripts/godot_tools_build.py b/modules/mono/build_scripts/godot_tools_build.py index 8e77f3bb44..7391e8790d 100644 --- a/modules/mono/build_scripts/godot_tools_build.py +++ b/modules/mono/build_scripts/godot_tools_build.py @@ -15,7 +15,7 @@ def build_godot_tools(source, target, env): from .solution_builder import build_solution - build_solution(env, solution_path, build_config, restore=True) + build_solution(env, solution_path, build_config) # No need to copy targets. The GodotTools csproj takes care of copying them. -- cgit v1.2.3