Files
Nuake/NuakeNetGenerator/premake5.lua
2025-04-03 23:06:54 -04:00

23 lines
541 B
Lua

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