Remove tracing
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<Platforms>x64</Platforms>
|
||||
<Configurations>Debug;Release;Trace</Configurations>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -32,10 +32,5 @@
|
||||
<PropertyGroup Condition="'$(IS_BENCH)'=='1'">
|
||||
<DefineConstants>$(DefineConstants);IS_DETERMINISTIC</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Trace'">
|
||||
<Optimize>True</Optimize>
|
||||
<DefineConstants>$(DefineConstants);IS_DETERMINISTIC;IS_TRACE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -8,12 +8,8 @@ internal static class Program
|
||||
{
|
||||
private static Task Main(string[] args)
|
||||
{
|
||||
#if !IS_TRACE
|
||||
RunBench(args);
|
||||
return Task.CompletedTask;
|
||||
#else
|
||||
return RunTrace();
|
||||
#endif
|
||||
// return RunOther();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user