Skip to content

Commit 25907c9

Browse files
authored
Merge branch 'OpenAPITools:master' into java-client/immutable-pair
2 parents a7942d0 + ffa196e commit 25907c9

File tree

8,147 files changed

+42833
-19822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,147 files changed

+42833
-19822
lines changed

.github/workflows/samples-ocaml.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Samples OCaml
2+
3+
on:
4+
push:
5+
paths:
6+
- 'samples/client/petstore/ocaml/**'
7+
pull_request:
8+
paths:
9+
- 'samples/client/petstore/ocaml/**'
10+
11+
jobs:
12+
build:
13+
name: Build OCaml
14+
runs-on: ubuntu-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
sample:
19+
- 'samples/client/petstore/ocaml/'
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Set-up OCaml
23+
uses: ocaml/setup-ocaml@v3
24+
with:
25+
ocaml-compiler: 5
26+
- name: Install
27+
run: opam install . --deps-only --with-test
28+
working-directory: ${{ matrix.sample }}
29+
- name: Build
30+
run: opam exec -- dune build
31+
working-directory: ${{ matrix.sample }}
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Samples Protobuf
2+
on:
3+
push:
4+
paths:
5+
- .github/workflows/samples-protobuf.yaml
6+
- samples/config/petstore/protobuf-schema/**
7+
- samples/config/petstore/protobuf-schema-config/**
8+
pull_request:
9+
paths:
10+
- .github/workflows/samples-protobuf.yaml
11+
- samples/config/petstore/protobuf-schema/**
12+
- samples/config/petstore/protobuf-schema-config/**
13+
jobs:
14+
build:
15+
name: Build Protobuf Client
16+
runs-on: ubuntu-latest
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
sample:
21+
- 'samples/config/petstore/protobuf-schema/'
22+
- 'samples/config/petstore/protobuf-schema-config/'
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: Install Protocol Buffers Compiler
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y protobuf-compiler
29+
- name: Generate Protobuf Schema
30+
working-directory: ${{ matrix.sample }}
31+
run: |
32+
mkdir out
33+
protoc --proto_path=. --cpp_out=out models/*.proto services/*.proto
34+
- name: Verify Generated Files
35+
working-directory: ${{ matrix.sample }}
36+
run: |
37+
ls -l out/models
38+
ls -l out/services

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<div align="center">
1717

18-
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.12.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.13.0`):
1919
[![Build Status](https://api.travis-ci.com/OpenAPITools/openapi-generator.svg?branch=master&status=passed)](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
2020
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
2121
[![Windows Test](https://ci.appveyor.com/api/projects/status/github/openapitools/openapi-generator?branch=master&svg=true&passingText=Windows%20Test%20-%20OK&failingText=Windows%20Test%20-%20Fails)](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
@@ -131,8 +131,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
131131

132132
| OpenAPI Generator Version | Release Date | Notes |
133133
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
134-
| 7.12.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.12.0-SNAPSHOT/) | 17.02.2024 | Minor release with breaking changes (with fallback) |
135-
| [7.11.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.11.0) (latest stable release) | 20.01.2024 | Minor release with breaking changes (with fallback) |
134+
| 7.13.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.13.0-SNAPSHOT/) | 02.04.2025 | Minor release with breaking changes (with fallback) |
135+
| [7.12.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.12.0) (latest stable release) | 28.02.2025 | Minor release with breaking changes (with fallback) |
136136
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
137137
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
138138
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -195,16 +195,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
195195
<!-- RELEASE_VERSION -->
196196
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
197197

198-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar`
198+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar`
199199

200200
For **Mac/Linux** users:
201201
```sh
202-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar -O openapi-generator-cli.jar
202+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar -O openapi-generator-cli.jar
203203
```
204204

205205
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
206206
```
207-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar
207+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar
208208
```
209209

210210
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -439,7 +439,7 @@ openapi-generator-cli version
439439
To use a specific version of "openapi-generator-cli"
440440

441441
```sh
442-
openapi-generator-cli version-manager set 7.11.0
442+
openapi-generator-cli version-manager set 7.12.0
443443
```
444444

445445
Or install it as dev-dependency:
@@ -463,7 +463,7 @@ pip install openapi-generator-cli
463463

464464
To install a specific version
465465
```
466-
pip install openapi-generator-cli==7.11.0
466+
pip install openapi-generator-cli==7.12.0
467467
```
468468

469469
You can also install with [jdk4py](https://github.com/activeviam/jdk4py) instead of java binary. (python>=3.10 is required)
@@ -489,7 +489,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
489489
(if you're on Windows, replace the last command with `java -jar modules\openapi-generator-cli\target\openapi-generator-cli.jar generate -i https://raw.githubusercontent.com/openapitools/openapi-generator/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml -g php -o c:\temp\php_api_client`)
490490

491491
<!-- RELEASE_VERSION -->
492-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar)
492+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar)
493493
<!-- /RELEASE_VERSION -->
494494

495495
To get a list of **general** options available, please run `java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar help generate`
@@ -631,6 +631,7 @@ Here are some companies/projects (alphabetical order) using OpenAPI Generator in
631631
- [act coding](https://github.com/actcoding)
632632
- [Adaptant Solutions AG](https://www.adaptant.io/)
633633
- [adesso SE](https://www.adesso.de/)
634+
- [adorsys GmbH & Co.KG](https://adorsys.com/)
634635
- [Adyen](https://www.adyen.com/)
635636
- [Agoda](https://www.agoda.com/)
636637
- [Airthings](https://www.airthings.com/)

bin/configs/csharp-generichost-net4.7-allOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/AllOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.7-anyOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/AnyOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.7-anyOfNoCompare.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.7-formModels.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/FormModels
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.7-oneOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/OneOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.7-useDateTimeForDate.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'

bin/configs/csharp-generichost-net4.7.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.7/Petstore
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-allOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/AllOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-anyOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/AnyOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-anyOfNoCompare.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-formModels.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/FormModels
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-oneOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/OneOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net4.8-useDateTimeForDate.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/UseDateTimeForDate
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'

bin/configs/csharp-generichost-net4.8.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net4.8/Petstore
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-allOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/AllOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-anyOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/AnyOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-anyOfNoCompare.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/AnyOfNoCompare
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-formModels.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/FormModels
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-nrt-useSourceGeneration.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/SourceGeneration
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-nrt.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/NullReferenceTypes
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-oneOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/OneOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net8-useDateTimeForDate.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'

bin/configs/csharp-generichost-net8.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net8/Petstore
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-allOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/AllOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/allOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-anyOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/AnyOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-anyOfNoCompare.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/AnyOfNoCompare
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/anyOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-formModels.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/FormModels
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-nrt-useSourceGeneration.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/SourceGeneration
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-nrt.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/NullReferenceTypes
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-oneOf.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/OneOf
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/oneOf.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{321C8C3F-0156-40C1-AE42-D59761FB9B6C}'

bin/configs/csharp-generichost-net9-useDateTimeForDate.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generatorName: csharp
33
outputDir: samples/client/petstore/csharp/generichost/net9/UseDateTimeForDate
44
inputSpec: modules/openapi-generator/src/test/resources/3_0/csharp/dates-api.yaml
5-
library: generichost
65
templateDir: modules/openapi-generator/src/main/resources/csharp
76
additionalProperties:
87
packageGuid: '{2E60EF87-DB0B-4D01-A36E-F5E90F7EC757}'

0 commit comments

Comments
 (0)