Removed a no-longer needed file.
Working on the builder. Made a dark-mode-friendly hightlight file for Browser .
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user