File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
test/Microsoft.OpenApi.Tests Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 99 <Nullable >enable</Nullable >
1010 <ToolCommandName >hidi</ToolCommandName >
1111 <PackageOutputPath >./../../artifacts</PackageOutputPath >
12- <Version >1.4.13 </Version >
12+ <Version >1.4.14 </Version >
1313 <Description >OpenAPI.NET CLI tool for slicing OpenAPI documents</Description >
1414 <SignAssembly >true</SignAssembly >
1515 <!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources -->
3939 </PackageReference >
4040 <PackageReference Include =" System.CommandLine" Version =" 2.0.0-beta4.22272.1" />
4141 <PackageReference Include =" Microsoft.OData.Edm" Version =" 8.1.0" />
42- <PackageReference Include =" Microsoft.OpenApi.OData" Version =" 2.0.0-preview.6 " />
42+ <PackageReference Include =" Microsoft.OpenApi.OData" Version =" 2.0.0-preview.7 " />
4343 <PackageReference Include =" Microsoft.OpenApi.ApiManifest" Version =" 0.5.0-preview" />
4444 <PackageReference Include =" System.CommandLine.Hosting" Version =" 0.4.0-alpha.22272.1" />
4545 <!-- STJ
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ public static class OpenApiTypeMapper
5757 /// Other types including nullables and URL are also supported.
5858 /// Common Name type format Comments
5959 /// =========== ======= ====== =========================================
60- /// integer integer int32 signed 32 bits
61- /// long integer int64 signed 64 bits
60+ /// integer number int32 signed 32 bits
61+ /// long number int64 signed 64 bits
6262 /// float number float
6363 /// double number double
6464 /// string string [empty]
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ internal static class Utils
2020 /// <returns>The input value.</returns>
2121 internal static T CheckArgumentNull < T > (
2222 T value ,
23- [ CallerArgumentExpression ( " value" ) ] string parameterName = "" )
23+ [ CallerArgumentExpression ( nameof ( value ) ) ] string parameterName = "" )
2424 {
2525 return value ?? throw new ArgumentNullException ( parameterName , $ "Value cannot be null: { parameterName } ") ;
2626 }
Original file line number Diff line number Diff line change 1515 <PackageReference Include =" Moq" Version =" 4.20.72" />
1616 <PackageReference Include =" Newtonsoft.Json" Version =" 13.0.3" />
1717 <PackageReference Include =" SharpYaml" Version =" 2.1.1" />
18- <PackageReference Include =" Verify.Xunit" Version =" 27.0.1 " />
18+ <PackageReference Include =" Verify.Xunit" Version =" 27.1.0 " />
1919 <PackageReference Include =" xunit" Version =" 2.9.2" />
2020 <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.2" PrivateAssets =" all" />
2121 <PackageReference Include =" Microsoft.CSharp" Version =" 4.7.0" />
You can’t perform that action at this time.
0 commit comments