// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Benchmarks { using BenchmarkDotNet.Running; using ImageSharp.Formats; using System.Reflection; public class Program { /// /// The main. /// /// /// The arguments to pass to the program. /// public static void Main(string[] args) { new BenchmarkSwitcher(typeof(Program).GetTypeInfo().Assembly).Run(args); } } }