File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Microsoft.OpenApi.Readers Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 10
10
<Company >Microsoft</Company >
11
11
<Title >Microsoft.OpenApi.Readers</Title >
12
12
<PackageId >Microsoft.OpenApi.Readers</PackageId >
13
- <Version >1.2.0 </Version >
13
+ <Version >1.2.1 </Version >
14
14
<Description >OpenAPI.NET Readers for JSON and YAML documents</Description >
15
15
<Copyright >© Microsoft Corporation. All rights reserved.</Copyright >
16
16
<PackageTags >OpenAPI .NET</PackageTags >
Original file line number Diff line number Diff line change @@ -10,12 +10,21 @@ public class OpenApiString : OpenApiPrimitive<string>
10
10
{
11
11
private bool isExplicit ;
12
12
13
+ /// <summary>
14
+ /// Initializes the <see cref="OpenApiString"/> class.
15
+ /// </summary>
16
+ /// <param name="value"></param>
17
+ public OpenApiString ( string value )
18
+ : this ( value , false )
19
+ {
20
+ }
21
+
13
22
/// <summary>
14
23
/// Initializes the <see cref="OpenApiString"/> class.
15
24
/// </summary>
16
25
/// <param name="value"></param>
17
26
/// <param name="isExplicit">Used to indicate if a string is quoted.</param>
18
- public OpenApiString ( string value , bool isExplicit = false )
27
+ public OpenApiString ( string value , bool isExplicit )
19
28
: base ( value )
20
29
{
21
30
this . isExplicit = isExplicit ;
Original file line number Diff line number Diff line change 10
10
<Company >Microsoft</Company >
11
11
<Title >Microsoft.OpenApi</Title >
12
12
<PackageId >Microsoft.OpenApi</PackageId >
13
- <Version >1.2.0 </Version >
13
+ <Version >1.2.1 </Version >
14
14
<Description >.NET models with JSON and YAML writers for OpenAPI specification</Description >
15
15
<Copyright >© Microsoft Corporation. All rights reserved.</Copyright >
16
16
<PackageTags >OpenAPI .NET</PackageTags >
You can’t perform that action at this time.
0 commit comments