Skip to content

Commit 4a2adf5

Browse files
Merge pull request #2603 from microsoft/dependabot/nuget/performance/benchmark/multi-7b82c4982d
Bump BenchmarkDotNet and BenchmarkDotNet.Diagnostics.Windows
2 parents 4e61308 + 1e75f9a commit 4a2adf5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
66
dotnet msbuild %PROJ% /t:build /p:Configuration=Release
77
dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts
88

9-
Echo Building Microsoft.OpenApi.Readers
9+
Echo Building Microsoft.OpenApi.YamlReader
1010

11-
SET PROJ=%~dp0src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj
11+
SET PROJ=%~dp0src\Microsoft.OpenApi.YamlReader\Microsoft.OpenApi.YamlReader.csproj
1212
dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
1313
dotnet msbuild %PROJ% /t:build /p:Configuration=Release
1414
dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dotnet msbuild "$PROJ" /t:restore /p:Configuration=Release
77
dotnet msbuild "$PROJ" /t:build /p:Configuration=Release
88
dotnet msbuild "$PROJ" /t:pack "/p:Configuration=Release;PackageOutputPath=$(dirname "$0")/artifacts"
99

10-
echo "Building Microsoft.OpenApi.Readers"
10+
echo "Building Microsoft.OpenApi.YamlReader"
1111

12-
PROJ="$(dirname "$0")/src/Microsoft.OpenApi.Readers/Microsoft.OpenApi.Readers.csproj"
12+
PROJ="$(dirname "$0")/src/Microsoft.OpenApi.YamlReader/Microsoft.OpenApi.YamlReader.csproj"
1313
dotnet msbuild "$PROJ" /t:restore /p:Configuration=Release
1414
dotnet msbuild "$PROJ" /t:build /p:Configuration=Release
1515
dotnet msbuild "$PROJ" /t:pack "/p:Configuration=Release;PackageOutputPath=$(dirname "$0")/artifacts"

performance/benchmark/PerformanceTests.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
<Optimize>true</Optimize>
1212
<Configuration>Release</Configuration>
1313
<IsPackable>false</IsPackable>
14-
<NoWarn>CA1822</NoWarn>
14+
<!-- https://github.com/dotnet/BenchmarkDotNet/issues/2863 -->
15+
<NoWarn>CA1822;CS9057;</NoWarn>
1516
</PropertyGroup>
1617
<ItemGroup>
17-
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
18-
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.6" />
18+
<PackageReference Include="BenchmarkDotNet" Version="0.15.7" />
19+
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.7" />
1920
</ItemGroup>
2021
<ItemGroup>
2122
<ProjectReference Include="..\..\src\Microsoft.OpenApi\Microsoft.OpenApi.csproj" />

0 commit comments

Comments
 (0)