Skip to content

[C#] Method signatures use incorrect casing when generated since PR #6305 #7070

@jamesbar2

Description

@jamesbar2
Description

Since Issue #6281 and PR #6305, the parameters in model constructors are not using the recommended style rules from Microsoft. This creates breaking changes for our users who are using this formatting:

Old:

new Model(argument1: "foo", argument3: "bar")

New:

new Model(Argument1: "foo", Argument3: "bar")

This does not apply to the API method parameters, only model constructor parameters.

Swagger-codegen version

2.3.0

Swagger declaration file content or url
JSON Language Configuration File:
{
    "packageName": "MyApi.Client",
    "apiPackage": "Api"
}

Also, attempting adding "modelPropertyNaming": "camelCase", this provided the desired result for the parameters, but then the models were also named in camelCase.

Command line used for generation
docker run --rm -v /swagger_codegen:/local swaggerapi/swagger-codegen-cli generate -i /v1.json -l csharp -o /local/generated/csharp -c /local/csharp.json
Related issues/PRs

#6281
PR #6305

Suggest a fix/enhancement

Switch back to using camelCase on the model constructors, per the style guidelines from Microsoft.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions