Fixed C# premake scripts

This commit is contained in:
antopilo
2025-01-16 20:19:27 -05:00
parent 6dc7765c70
commit 51038f4579
2 changed files with 7 additions and 7 deletions

View File

@@ -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

View File

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