From c1dbf171f5df7650ad26b90af9946963c0e8b240 Mon Sep 17 00:00:00 2001 From: Gian-Fr <63294205+Gian-Fr@users.noreply.github.com> Date: Thu, 1 May 2025 16:21:02 +0200 Subject: [PATCH] Fixed MakeFile for Linux --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 83cd64193..36b29b5fe 100644 --- a/Makefile +++ b/Makefile @@ -62,8 +62,8 @@ $(info ) # On linux use xabuild, on Windows use MSBuild.exe, otherwise (macos?) use msbuild. ifeq ($(detected_OS),Linux) - MSBUILD_binary := xabuild - MSBUILD := $(shell $(WHICH) $(MSBUILD_binary)) + MSBUILD_binary := dotnet + MSBUILD := $(shell $(WHICH) $(MSBUILD_binary)) build else ifeq ($(detected_OS),Windows) MSBUILD_binary := MSBuild.exe MSBUILD := $(shell $(WHICH) $(MSBUILD_binary) 2> nul)