> [!Note] > **Developer Note** > Now developers will only need to build/run the Application project instead of everything. > When adding new projects, make sure to: > 1. Add a reference to that project in the Application project. > 2. Add the dll file to the Distribution/Data/assemblies.json file ### Summary - Adds an application project - Consolidates process restarts to use `Core.Kill(true)` - Removes some old messaging, for example processor optimization - Fixes missing build cleanup
23 lines
468 B
C#
23 lines
468 B
C#
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
|
|
namespace Server;
|
|
|
|
public class Application
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
bool profiling = false;
|
|
|
|
foreach (var a in args)
|
|
{
|
|
if (a.InsensitiveEquals("-profile"))
|
|
{
|
|
profiling = true;
|
|
}
|
|
}
|
|
|
|
Core.Setup(profiling, Assembly.GetEntryAssembly(), Process.GetCurrentProcess());
|
|
}
|
|
}
|