├── .gitignore ├── Benchmarkable.Test ├── BenchmarkTests.cs ├── Benchmarkable.Test.csproj └── packages.config ├── Benchmarkable.sln ├── Benchmarkable ├── Benchmark.cs ├── BenchmarkResults.cs ├── BenchmarkSettings.cs ├── Benchmarkable.csproj ├── Benchmarkable.nuspec ├── JustClause.cs ├── Properties │ └── AssemblyInfo.cs ├── Result.cs ├── Run.cs ├── TDistribution.cs ├── ThisClause.cs └── packages.config ├── Examples ├── Examples.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/.gitignore -------------------------------------------------------------------------------- /Benchmarkable.Test/BenchmarkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable.Test/BenchmarkTests.cs -------------------------------------------------------------------------------- /Benchmarkable.Test/Benchmarkable.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable.Test/Benchmarkable.Test.csproj -------------------------------------------------------------------------------- /Benchmarkable.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable.Test/packages.config -------------------------------------------------------------------------------- /Benchmarkable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable.sln -------------------------------------------------------------------------------- /Benchmarkable/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Benchmark.cs -------------------------------------------------------------------------------- /Benchmarkable/BenchmarkResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/BenchmarkResults.cs -------------------------------------------------------------------------------- /Benchmarkable/BenchmarkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/BenchmarkSettings.cs -------------------------------------------------------------------------------- /Benchmarkable/Benchmarkable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Benchmarkable.csproj -------------------------------------------------------------------------------- /Benchmarkable/Benchmarkable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Benchmarkable.nuspec -------------------------------------------------------------------------------- /Benchmarkable/JustClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/JustClause.cs -------------------------------------------------------------------------------- /Benchmarkable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Benchmarkable/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Result.cs -------------------------------------------------------------------------------- /Benchmarkable/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/Run.cs -------------------------------------------------------------------------------- /Benchmarkable/TDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/TDistribution.cs -------------------------------------------------------------------------------- /Benchmarkable/ThisClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/ThisClause.cs -------------------------------------------------------------------------------- /Benchmarkable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Benchmarkable/packages.config -------------------------------------------------------------------------------- /Examples/Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Examples/Examples.csproj -------------------------------------------------------------------------------- /Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Examples/Program.cs -------------------------------------------------------------------------------- /Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Examples/app.config -------------------------------------------------------------------------------- /Examples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/Examples/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyciechanowicz/Benchmarkable/HEAD/README.md --------------------------------------------------------------------------------