48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using Microsoft.AspNetCore.Blazor.Performance;
|
|
|
|
namespace Microsoft.AspNetCore.BenchmarkDotNet.Runner
|
|
{
|
|
internal partial class Program
|
|
{
|
|
static partial void BeforeMain(string[] args)
|
|
{
|
|
if (args.Length == 0 || args[0] != "--profile")
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Write code here if you want to profile something. Normally Benchmark.NET launches
|
|
// a separate process, which can be hard to profile.
|
|
//
|
|
// See: https://github.com/dotnet/BenchmarkDotNet/issues/387
|
|
|
|
// Example:
|
|
//Console.WriteLine("Starting...");
|
|
//var stopwatch = Stopwatch.StartNew();
|
|
//var benchmark = new RenderTreeDiffBuilderBenchmark();
|
|
|
|
//for (var i = 0; i < 100000; i++)
|
|
//{
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
// benchmark.ComputeDiff_SingleFormField();
|
|
//}
|
|
|
|
//Console.WriteLine($"Done after {stopwatch.ElapsedMilliseconds}ms");
|
|
//Environment.Exit(0);
|
|
}
|
|
}
|
|
}
|