Skip to content

Commit

Permalink
feat: add benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Oct 29, 2023
1 parent b350e96 commit 0d5b35f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions DotFastLZ.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotFastLZ.Compression.Tests
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotFastLZ.Packaging.Tests", "test\DotFastLZ.Packaging.Tests\DotFastLZ.Packaging.Tests.csproj", "{15F8F8E3-2D89-4487-AAFB-3B617470342E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotFastLZ.Benchmark", "src\DotFastLZ.Benchmark\DotFastLZ.Benchmark.csproj", "{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -46,12 +48,17 @@ Global
{15F8F8E3-2D89-4487-AAFB-3B617470342E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{15F8F8E3-2D89-4487-AAFB-3B617470342E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{15F8F8E3-2D89-4487-AAFB-3B617470342E}.Release|Any CPU.Build.0 = Release|Any CPU
{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C20491BC-E472-4F09-B29C-DD7BF853C1C4} = {642F4CE7-0431-49D4-9BDE-E663C13C7792}
{FD482722-B4F3-4D05-8AAA-8EA228888C05} = {87EE9A81-1074-4466-AF83-6A059185A8E9}
{A843203D-30DB-4CA4-9F6D-F03E9F1038C1} = {642F4CE7-0431-49D4-9BDE-E663C13C7792}
{95E2DEFC-180E-4EAC-84CD-583DE1AAD587} = {642F4CE7-0431-49D4-9BDE-E663C13C7792}
{15F8F8E3-2D89-4487-AAFB-3B617470342E} = {87EE9A81-1074-4466-AF83-6A059185A8E9}
{6B8B8BA7-9039-43BD-9837-EEF2957AF5AD} = {642F4CE7-0431-49D4-9BDE-E663C13C7792}
EndGlobalSection
EndGlobal
8 changes: 8 additions & 0 deletions src/DotFastLZ.Benchmark/DotFastLZ.Benchmark.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

</Project>
9 changes: 9 additions & 0 deletions src/DotFastLZ.Benchmark/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;

public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}

0 comments on commit 0d5b35f

Please sign in to comment.