mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
* fixed parameter ordering * placed changes behind a switch * bug fix * minor revert * use lombok.Setter * addressed comment * lint * minor refactor * massively improve csharp templates code improved apiclient.mustache to keep it dry, sharing a single exec with Action<> delegate. improved api.mustache to keep it dry, used chain constructors, kept RequestOptions in a single method, set configuration with alias directive moved fqn types to using directive for cleaner code removed 'this' from variables/props that are redundant fix CSharpClientDeepObjectTest code is now DRY so count must only be one * updated test samples csharp * removed async from ExecAsync (not needed here anymore) * updated samples csharp * nullable property not working on models due to not being defined in yaml schema updated samples * added options * rebuild tests * revert unintended commits * rebuild samples * rebuild samples * rererebuild samples * fix manual tests --------- Co-authored-by: filipe <filipe_ds@live.com.pt>
18 lines
688 B
YAML
18 lines
688 B
YAML
# for csharp generichost
|
|
generatorName: csharp
|
|
outputDir: samples/client/petstore/csharp/generichost/net4.7/FormModels
|
|
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
|
|
library: generichost
|
|
templateDir: modules/openapi-generator/src/main/resources/csharp
|
|
additionalProperties:
|
|
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'
|
|
useCompareNetObjects: true
|
|
disallowAdditionalPropertiesIfNotPresent: false
|
|
nullableReferenceTypes: false
|
|
equatable: true
|
|
targetFramework: net47
|
|
skipFormModel: false
|
|
modelPropertySorting: alphabetical
|
|
inlineSchemaOptions:
|
|
RESOLVE_INLINE_ENUMS: true
|