mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-01 05:48:14 +03:00
31 lines
658 B
Lua
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"
|
|
}
|