Skip to content

Commit d4a50ef

Browse files
authored
Merge pull request #122 from baywet/feat/oai-3-2-0-support
feat: adds support for OpenAPI 3.1 and 3.2
2 parents afc8d60 + f8f9997 commit d4a50ef

File tree

5 files changed

+977
-45
lines changed

5 files changed

+977
-45
lines changed

.vscode/launch.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "C#: DocFxOpenApi Debug",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
"program": "${workspaceFolder}/src/DocFxOpenApi/bin/Debug/net8.0/DocFxOpenApi.dll",
13+
"args": [
14+
"-s",
15+
"${workspaceFolder}/src/DocFxOpenApi/Descriptions/petstore.yaml"
16+
],
17+
"cwd": "${workspaceFolder}/src/DocFxOpenApi",
18+
"stopAtEntry": false,
19+
"console": "integratedTerminal"
20+
}
21+
22+
]
23+
}

.vscode/tasks.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "shell",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/DocFxOpenApi/DocFxOpenApi.csproj"
11+
],
12+
"problemMatcher": "$msCompile",
13+
"group": {
14+
"kind": "build",
15+
"isDefault": true
16+
}
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)