Hi,
when I build the sample solution coming with the VS extension and enable the plugin OpenAPI the method verb (GET, POSt, DELETE) is part of the operationId when I take a look at http://127.0.0.1:8088/openapi
For example: HelloName_Delete
"delete": {
"tags": [
"hello"
],
"operationId": "HelloName_Delete",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "Name",
"in": "path",
"type": "string",
"required": true
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/HelloResponse"
}
}
},
"deprecated": false
},
How can I disable this?
greetings
Andre