You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to add OpenAPI for isolated workers (Microsoft.Azure.Functions.Worker.Extensions.OpenApi version 1.5.1)
that package had reference to Microsoft.Azure.WebJobs.Extensions.OpenApi.Core
and this one have references to:
They are packages to in-process workers, and should not be used for isolated workers.
The issue also provide miss used attributes, that should be use from isolated workers, but it's taken a in-process
To Reproduce
Just add Microsoft.Azure.Functions.Worker.Extensions.OpenApi into your project
Expected behavior
OpenAPI should not use references from different type of the applications
so isolated workers should only used isolated packages (Microsoft.Azure.Functions.Worker.*)
and in-process workers should only use in-process packages (Microsoft.Azure.WebJobs.*)
Screenshots
The text was updated successfully, but these errors were encountered:
Describe the issue
When I tried to add OpenAPI for isolated workers (
Microsoft.Azure.Functions.Worker.Extensions.OpenApi
version 1.5.1)that package had reference to
Microsoft.Azure.WebJobs.Extensions.OpenApi.Core
and this one have references to:
They are packages to in-process workers, and should not be used for isolated workers.
The issue also provide miss used attributes, that should be use from isolated workers, but it's taken a in-process
To Reproduce
Just add
Microsoft.Azure.Functions.Worker.Extensions.OpenApi
into your projectExpected behavior
OpenAPI should not use references from different type of the applications
so isolated workers should only used isolated packages (
Microsoft.Azure.Functions.Worker.*
)and in-process workers should only use in-process packages (
Microsoft.Azure.WebJobs.*
)Screenshots
The text was updated successfully, but these errors were encountered: