mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
### Summary - Removes `Profiling` - Recommend using Visual Studio Performance Profiler, [dotnet-trace](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-trace) or [JetBrains dotTrace](https://www.jetbrains.com/profiler/) - Cleans up the core tick count, sampling, etc.
12 lines
236 B
C#
12 lines
236 B
C#
using System.Diagnostics;
|
|
using System.Reflection;
|
|
|
|
namespace Server;
|
|
|
|
public class Application
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Core.Setup(Assembly.GetEntryAssembly(), Process.GetCurrentProcess());
|
|
}
|
|
}
|