Support ASP.NET Core 11 #2527
Annotations
3 errors
|
Build, Package and Test
Process completed with exit code 1.
|
|
Build, Package and Test:
test/Swashbuckle.AspNetCore.IntegrationTests/CodeGenerationTests.cs#L62
VerifyException : Directory: D:\a\Swashbuckle.AspNetCore\Swashbuckle.AspNetCore\test\Swashbuckle.AspNetCore.IntegrationTests\snapshots/code
Delete:
- KiotaOpenApiClient.verified.cs
- Product.verified.cs
- ProductsRequestBuilder.verified.cs
|
|
Build, Package and Test:
test/Swashbuckle.AspNetCore.IntegrationTests/VerifyTests.cs#L60
VerifyException : Directory: D:\a\Swashbuckle.AspNetCore\Swashbuckle.AspNetCore\test\Swashbuckle.AspNetCore.IntegrationTests\snapshots/11_0
New:
- Received: VerifyTests.Swagger_IsValidJson_No_Startup_entryPointType=Authorization.Program_swaggerRequestUri=v1.DotNet11_0.received.txt
Verified: VerifyTests.Swagger_IsValidJson_No_Startup_entryPointType=Authorization.Program_swaggerRequestUri=v1.verified.txt
FileContent:
New:
Received: VerifyTests.Swagger_IsValidJson_No_Startup_entryPointType=Authorization.Program_swaggerRequestUri=v1.DotNet11_0.received.txt
{
"openapi": "3.0.4",
"info": {
"title": "Authorization API",
"version": "v1"
},
"paths": {
"/resources": {
"get": {
"tags": [
"Resources"
],
"responses": {
"200": {
"description": "OK",
"content": {
"text/plain": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Resource"
}
}
},
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Resource"
}
}
},
"text/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Resource"
}
}
}
}
}
}
},
"post": {
"tags": [
"Resources"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
}
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
},
"security": [
{
"bearer": [
"Administrator"
]
}
]
}
},
"/resources/{id}": {
"get": {
"tags": [
"Resources"
],
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/Resource"
}
}
}
},
"401": {
"description": "Unauthorized"
},
"403": {
|
Loading