Generating Open API Document for Azure Functions in Command-Line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PowerShell Console | |
azfuncopenapi ` | |
--project <PROJECT_PATH> ` | |
--configuration Debug ` | |
--target netcoreapp2.1 ` | |
--version v2 ` | |
--format json ` | |
--output output ` | |
--console false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bash | |
./azfuncopenapi \ | |
--project <PROJECT_PATH> \ | |
--configuration Debug \ | |
--target netcoreapp2.1 \ | |
--version v2 \ | |
--format json \ | |
--output output \ | |
--console false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment