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.
This commit is contained in:
parent
65bc264402
commit
2e6ddcd31a
14 changed files with 80 additions and 949 deletions
|
|
@ -7,16 +7,6 @@ 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());
|
||||
Core.Setup(Assembly.GetEntryAssembly(), Process.GetCurrentProcess());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue