mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
0e1ce6bb63
* [docs] Updating docsite outputs to be browsable on Github as well * Fix links to other files Suffix `.md` was needed to make links works * [docs] Add clarification to differences between customization and templating docs * [docs] Collapsible side bar, scroll to top, minor enhancements
1.4 KiB
1.4 KiB
title | sidebar_label |
---|---|
Config Options for fsharp-giraffe-server | fsharp-giraffe-server |
Option | Description | Values | Default |
---|---|---|---|
licenseUrl | The URL of the license | http://localhost | |
licenseName | The name of the license | NoLicense | |
packageCopyright | Specifies an AssemblyCopyright for the .NET Framework global assembly attributes stored in the AssemblyInfo file. | No Copyright | |
packageAuthors | Specifies Authors property in the .NET Core project file. | OpenAPI | |
packageTitle | Specifies an AssemblyTitle for the .NET Framework global assembly attributes stored in the AssemblyInfo file. | OpenAPI Library | |
packageName | F# module name (convention: Title.Case). | OpenAPI | |
packageVersion | F# package version. | 1.0.0 | |
packageGuid | The GUID that will be associated with the C# project | null | |
sourceFolder | source folder for generated code | OpenAPI/src | |
sortParamsByRequiredFlag | Sort method arguments to place required parameters before optional parameters. | true | |
useDateTimeOffset | Use DateTimeOffset to model date-time properties | false | |
useCollection | Deserialize array types to Collection<T> instead of List<T>. | false | |
returnICollection | Return ICollection<T> instead of the concrete type. | false | |
useSwashbuckle | Uses the Swashbuckle.AspNetCore NuGet package for documentation. | false | |
generateBody | Generates method body. | true | |
buildTarget | Target the build for a program or library. | program |