// Copyright (c) Six Labors. // Licensed under the Apache License, Version 2.0. using BenchmarkDotNet.Running; namespace SixLabors.ImageSharp.Benchmarks { public class Program { /// /// The main. /// /// /// The arguments to pass to the program. /// public static void Main(string[] args) => BenchmarkSwitcher .FromAssembly(typeof(Program).Assembly) .Run(args); } }