Skip to content

Commit 9e79115

Browse files
committed
Review changes - manickap dotnet#3
1 parent d6b6252 commit 9e79115

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ AutoTest.Net/
133133
# Web workbench (sass)
134134
.sass-cache/
135135

136+
# BenchmarkDotNet
137+
BenchmarkDotNet.Artifacts/
138+
136139
# Installshield output folder
137140
[Ee]xpress/
138141

src/libraries/System.Net.Http/tests/PerformanceTests/HPackHuffmanBenchmark/Fakes/SR.cs

-10
This file was deleted.

src/libraries/System.Net.Http/tests/PerformanceTests/HPackHuffmanBenchmark/HPackHuffmanBenchmark.csproj

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net5.0</TargetFramework>
6+
<StringResourcesPath>../../../src/Resources/Strings.resx</StringResourcesPath>
67
<Nullable>enable</Nullable>
8+
<LangVersion>9.0</LangVersion>
79
</PropertyGroup>
810

911
<ItemGroup>
10-
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http2\Hpack\Huffman.cs" Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\Huffman.cs" />
11-
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http2\Hpack\HuffmanDecodingException.cs" Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\HuffmanDecodingException.cs" />
12+
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http2\Hpack\Huffman.cs"
13+
Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\Huffman.cs" />
14+
<Compile Include="$(CommonPath)System\Net\Http\aspnetcore\Http2\Hpack\HuffmanDecodingException.cs"
15+
Link="Common\System\Net\Http\aspnetcore\Http2\Hpack\HuffmanDecodingException.cs" />
1216
<Compile Include="Program.cs" />
13-
<Compile Include="Fakes\SR.cs" />
1417
</ItemGroup>
1518

1619
<ItemGroup>

0 commit comments

Comments
 (0)