Refactored folder structure

This commit is contained in:
antopilo
2025-01-31 18:04:43 -05:00
parent a4e7e7d530
commit 1f3a5e02af
313 changed files with 2350 additions and 674 deletions

View File

@@ -6,29 +6,25 @@ project "EditorNet"
-- 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
{
"src/**.cs"
"Source/**.cs"
}
links
{
"Coral.Managed",
"../Editor/NuakeNet.dll"
}
prebuildcommands {
-- "dotnet add package Microsoft.CodeAnalysis.CSharp.Scripting"
}
postbuildcommands {
'{ECHO} Copying "%{wks.location}/EditorNet/bin/$(Configuration)/EditorNet.dll" to "%{wks.location}/Editor"',
'{COPYFILE} "%{wks.location}/EditorNet/bin/$(Configuration)/EditorNet.dll" "%{wks.location}/Editor"'
"NuakeNet"
}