File tree Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Expand file tree Collapse file tree 2 files changed +15
-20
lines changed Original file line number Diff line number Diff line change 13
13
"include-component-in-tag" : false ,
14
14
"include-v-in-tag" : true ,
15
15
"draft" : false ,
16
- "prerelease" : true ,
17
- "versioning" : " prerelease" ,
18
- "prerelease-type" : " preview" ,
19
16
"packages" : {
20
17
"." : {
21
18
"package-name" : " Microsoft.OpenApi" ,
Original file line number Diff line number Diff line change 1
1
// Copyright (c) Microsoft Corporation. All rights reserved.
2
2
// Licensed under the MIT license.
3
3
4
- namespace Microsoft . OpenApi
4
+ namespace Microsoft . OpenApi ;
5
+ /// <summary>
6
+ /// Represents versions of OpenAPI specification.
7
+ /// </summary>
8
+ public enum OpenApiSpecVersion
5
9
{
6
10
/// <summary>
7
- /// Represents versions of OpenAPI specification.
11
+ /// Represents OpenAPI V2.0 spec
8
12
/// </summary>
9
- public enum OpenApiSpecVersion
10
- {
11
- /// <summary>
12
- /// Represents OpenAPI V2.0 spec
13
- /// </summary>
14
- OpenApi2_0 ,
13
+ OpenApi2_0 ,
15
14
16
- /// <summary>
17
- /// Represents all patches of OpenAPI V3.0 spec (e.g. 3.0.0, 3.0.1)
18
- /// </summary>
19
- OpenApi3_0 ,
15
+ /// <summary>
16
+ /// Represents all patches of OpenAPI V3.0 spec (e.g. 3.0.0, 3.0.1)
17
+ /// </summary>
18
+ OpenApi3_0 ,
20
19
21
- /// <summary>
22
- /// Represents OpenAPI V3.1 spec
23
- /// </summary>
24
- OpenApi3_1
20
+ /// <summary>
21
+ /// Represents OpenAPI V3.1 spec
22
+ /// </summary>
23
+ OpenApi3_1
25
24
26
- }
27
25
}
You can’t perform that action at this time.
0 commit comments