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"' }