-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
root = true | ||
|
||
############################### | ||
# Core EditorConfig Options # | ||
############################### | ||
|
||
# All files | ||
[*] | ||
indent_style = space | ||
charset = utf-8 | ||
|
||
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj,props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct,proto,json}] | ||
indent_size = 2 | ||
|
||
[*.cs] | ||
indent_size = 4 | ||
dotnet_sort_system_directives_first = true | ||
|
||
# Wrapping preferences | ||
csharp_preserve_single_line_statements = false | ||
csharp_preserve_single_line_blocks = true | ||
|
||
# | ||
resharper_csharp_space_before_trailing_comment = true | ||
resharper_csharp_space_after_operator_keyword = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,9 @@ | |
## Introduction | ||
dcbench is an in-memory benchmark of .net compressors | ||
|
||
## Usage: DotCompressorBenchmark.Tools | ||
## Usage: dcbench | ||
```shell | ||
$ dotnet tool install --global dcbench | ||
$ ./dcbench --help | ||
dcbench: .net compressor benchmark tool 2023.11.11 | ||
Copyright (c) Choi Ikpil([email protected]) | ||
|
2 changes: 0 additions & 2 deletions
2
src/DotCompressorBenchmark.Tools/DotCompressorBenchmark.Tools.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>dcbench</AssemblyName> | ||
<ToolCommandName>dcbench</ToolCommandName> | ||
<PackAsTool>true</PackAsTool> | ||
<PackageId>dcbench</PackageId> | ||
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\DotCompressorBenchmark.Tools\DotCompressorBenchmark.Tools.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |