File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
66dotnet msbuild %PROJ% /t:build /p:Configuration=Release
77dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts
88
9- Echo Building Microsoft.OpenApi.Readers
9+ Echo Building Microsoft.OpenApi.YamlReader
1010
11- SET PROJ = %~dp0 src\Microsoft.OpenApi.Readers \Microsoft.OpenApi.Readers .csproj
11+ SET PROJ = %~dp0 src\Microsoft.OpenApi.YamlReader \Microsoft.OpenApi.YamlReader .csproj
1212dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
1313dotnet msbuild %PROJ% /t:build /p:Configuration=Release
1414dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ dotnet msbuild "$PROJ" /t:restore /p:Configuration=Release
77dotnet msbuild " $PROJ " /t:build /p:Configuration=Release
88dotnet 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"
1313dotnet msbuild " $PROJ " /t:restore /p:Configuration=Release
1414dotnet msbuild " $PROJ " /t:build /p:Configuration=Release
1515dotnet msbuild " $PROJ " /t:pack " /p:Configuration=Release;PackageOutputPath=$( dirname " $0 " ) /artifacts"
Original file line number Diff line number Diff line change 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" />
You can’t perform that action at this time.
0 commit comments