mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-03 07:20:51 +00:00
Aligns C# project outputs more with community accepted standards and leverges Nuget for package management. This also moves the generated C# sample code out of the test project's Lib folder. The output structure here was causing some issues with maintainability (e.g. had to update test project with generated code). (see: https://gist.github.com/davidfowl/ed7564297c61fe9ab814) Output for a project, IO.Swagger will now look like: . ├── IO.Swagger.sln ├── README.md ├── bin ├── build.bat ├── build.sh ├── docs ├── packages └── src ├── IO.Swagger │ └── packages.config └── IO.Swagger.Test └── packages.config This is a change from the Java-like src/main/csharp/IO/Swagger/etc structure and will be a breaking change for some.
21 lines
604 B
Bash
21 lines
604 B
Bash
#!/usr/bin/env bash
|
|
frameworkVersion=net45
|
|
netfx=${frameworkVersion#net}
|
|
|
|
wget -nc https://nuget.org/nuget.exe;
|
|
mozroots --import --sync
|
|
mono nuget.exe install src/IO.Swagger/packages.config -o packages;
|
|
mkdir -p bin;
|
|
|
|
cp packages/Newtonsoft.Json.8.0.2/lib/net45/Newtonsoft.Json.dll bin/Newtonsoft.Json.dll;
|
|
cp packages/RestSharp.105.1.0/lib/net45/RestSharp.dll bin/RestSharp.dll;
|
|
|
|
mcs -sdk:${netfx} -r:bin/Newtonsoft.Json.dll,\
|
|
bin/RestSharp.dll,\
|
|
System.Runtime.Serialization.dll \
|
|
-target:library \
|
|
-out:bin/IO.Swagger.dll \
|
|
-recurse:'src/IO.Swagger/*.cs' \
|
|
-doc:bin/IO.Swagger.xml \
|
|
-platform:anycpu
|