This extension provides an Azure Functions app with Open API capability for better discoverability to consuming parties
Перейти к файлу
Justin Yoo a89866464e Add global.json to avoid pre-released .NET SDK 2022-02-09 14:09:07 +09:00
.github Remove GHA workflows for OCA 2022-02-09 14:08:45 +09:00
.vscode Update docs - removing "preview" 2021-11-08 11:36:57 +09:00
builds Add sign key 2021-10-07 00:50:10 +09:00
docs Update openapi.md (#338) 2021-12-22 15:56:15 +09:00
images Revising .NET 5 Isolated Worker (#187) 2021-08-04 23:47:45 +09:00
release-notes Add release note 2021-11-05 23:10:21 +09:00
samples Update docs - removing "preview" 2021-11-08 11:36:57 +09:00
src Fixes: Enum of type byte is ignored #309 (#310) 2022-02-09 14:05:29 +09:00
templates Revising .NET 5 Isolated Worker (#187) 2021-08-04 23:47:45 +09:00
test Fixes: Enum of type byte is ignored #309 (#310) 2022-02-09 14:05:29 +09:00
test-integration Add array endpoint and integration test (#325) 2021-11-21 11:10:37 +09:00
.editorconfig Initial code commit (#1) 2020-08-25 21:26:37 +09:00
.gitignore Revising .NET 5 Isolated Worker (#187) 2021-08-04 23:47:45 +09:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-07-20 11:55:55 -07:00
CONTRIBUTING.md Add issue template 2021-09-25 11:21:30 +09:00
LICENSE Initial LICENSE commit 2020-07-20 11:55:57 -07:00
Microsoft.Azure.WebJobs.Extensions.OpenApi.sln Add integration testing for OpenAPI document rendering (#219) 2021-08-29 22:26:34 +09:00
README.md Update README.md 2021-11-08 11:52:17 +09:00
SECURITY.md Initial SECURITY.md commit 2020-07-20 11:55:58 -07:00
Settings.StyleCop Initial code commit (#1) 2020-08-25 21:26:37 +09:00
global.json Add global.json to avoid pre-released .NET SDK 2022-02-09 14:09:07 +09:00
key.snk Add sign key 2021-10-07 00:50:10 +09:00

README.md

Azure Functions OpenAPI Extension

Acknowledgement

Getting Started

Sample Azure Function Apps with OpenAPI Document Enabled

Here are sample apps using the project references:

Here are the other sample apps directly using the NuGet packages (external repository):

Azure Functions V1 Support

This library supports Azure Functions V2 and onwards. If you still want to get your v1 app supported, find the community contribution or the proxy feature.

Known Issues

Missing .dll Files

Due to the Azure Functions Runtime limitation, sometimes some of .dll files are removed while publishing the function app. In this case, try the following workaround with your function app .csproj file.

<Project Sdk="Microsoft.NET.Sdk">
  ...
  <PropertyGroup>
    ...
    <_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
  </PropertyGroup>
  ...
</Project>

Empty Swagger UI When Deployed through Azure Pipelines

Swagger UI Error When Empty Project Referenced

Issues?

While using this library, if you find any issue, please raise an issue on the Issue page.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.