modernuo/Projects/Application/Application.cs
Kamron Batman 2e6ddcd31a
fix: Removes profiling. Streamlines core tick count. (#1948)
### 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.
2024-09-11 00:55:18 -07:00

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());
}
}