Files
Nuake/EditorNet/premake5.lua
2025-01-31 18:04:43 -05:00

31 lines
658 B
Lua

project "EditorNet"
language "C#"
dotnetframework "net8.0"
kind "SharedLib"
clr "Unsafe"
-- Don't specify architecture here. (see https://github.com/premake/premake-core/issues/1758)
targetdir (binaryOutputDir)
objdir (intBinaryOutputDir)
debugdir (binaryOutputDir)
vsprops {
AppendTargetFrameworkToOutputPath = "false",
Nullable = "enable",
CopyLocalLockFileAssemblies = "true",
EnableDynamicLoading = "true",
IntermediateOutputPath = intBinaryOutputDir
}
files
{
"Source/**.cs"
}
links
{
"Coral.Managed",
"NuakeNet"
}