Removed a no-longer needed file.

Working on the builder.
Made a dark-mode-friendly hightlight file for Browser .
This commit is contained in:
Creeper Lv
2026-01-02 03:24:33 +11:00
parent c1e4c71985
commit 3259071600
13 changed files with 319 additions and 81 deletions

View File

@@ -7,18 +7,24 @@ namespace Progrart.Core.ProjectSystem
[Serializable]
public class Project
{
public string OutputDir = "output";
public List<BuildConfiguration> Configurations = new List<BuildConfiguration>();
public ExecuteArguments Arguments = new ExecuteArguments();
}
[Serializable]
public class BuildConfiguration
{
public string? Name;
public string? OutputDir;
public List<BuildItem> Items = new List<BuildItem>();
public ExecuteArguments Arguments = new ExecuteArguments();
}
[Serializable]
public class BuildItem
{
public string? Source;
public string Source = "";
public string? Target;
public int Size;
public ExecuteArguments Arguments = new ExecuteArguments();
}
}