mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-06 18:45:23 +00:00
b64864f47d
* fix float/double default value * better code format * better CI for openapi3 batch files (C# client) * update nancyfx samples * pipe output to /dev/null to reduce log size * fix windows batch file * add C# API client generated by OAS3 spec
11 lines
501 B
Batchfile
11 lines
501 B
Batchfile
set executable=.\modules\openapi-generator-cli\target\openapi-generator-cli.jar
|
|
|
|
If Not Exist %executable% (
|
|
mvn clean package
|
|
)
|
|
|
|
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M
|
|
set ags=generate -i modules\openapi-generator\src\test\resources\2_0\petstore-with-fake-endpoints-models-for-testing.yaml -g csharp -o samples\client\petstore\csharp\SwaggerClientNetStandard --additional-properties targetFramework=v5.0,packageGuid={3AB1F259-1769-484B-9411-84505FCCBD55}
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|