From 51038f4579e3bbdf90fd8d0c5eb8e78ec26cd5fc Mon Sep 17 00:00:00 2001 From: antopilo Date: Thu, 16 Jan 2025 20:19:27 -0500 Subject: [PATCH] Fixed C# premake scripts --- EditorNet/premake5.lua | 6 +++--- NuakeNet/premake5.lua | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/EditorNet/premake5.lua b/EditorNet/premake5.lua index f7d0a241..ccf50445 100644 --- a/EditorNet/premake5.lua +++ b/EditorNet/premake5.lua @@ -6,9 +6,9 @@ project "EditorNet" -- Don't specify architecture here. (see https://github.com/premake/premake-core/issues/1758) - propertytags { - { "AppendTargetFrameworkToOutputPath", "false" }, - { "Nullable", "enable" }, + vsprops { + AppendTargetFrameworkToOutputPath = "false", + Nullable = "enable", } files diff --git a/NuakeNet/premake5.lua b/NuakeNet/premake5.lua index eb3d9288..18f8a415 100644 --- a/NuakeNet/premake5.lua +++ b/NuakeNet/premake5.lua @@ -6,9 +6,9 @@ project "NuakeNet" -- Don't specify architecture here. (see https://github.com/premake/premake-core/issues/1758) - propertytags { - { "AppendTargetFrameworkToOutputPath", "false" }, - { "Nullable", "enable" }, + vsprops { + AppendTargetFrameworkToOutputPath = "false", + Nullable = "enable", } files @@ -23,5 +23,5 @@ project "NuakeNet" postbuildcommands { '{ECHO} Copying "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" to "%{wks.location}/Editor"', - '{COPYFILE} "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" "%{wks.location}/Editor"' + '{COPYFILE} "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" "%{wks.location}/Editor"' }