mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-13 08:31:19 +00:00
Things to work on: Gaps: * Missing swagger definition functionality: - defaultResponse - examples - auth - consumes - produces - nickname - externalDocs - imports - security - schema * Resolve allParams/hasMore issue with headerParams * Create functional test project stub * Resolve all issues with value type return values In this commit: * Initial cross-platform ASP.NET 5 API server * Hook up swagger gen via Swashbuckle and xml comment * Build script (*nix) in project root * Dockerfile for container deployment
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"version": "1.0.0-*",
|
|
"compilationOptions": {
|
|
"emitEntryPoint": true
|
|
},
|
|
"tooling": {
|
|
"defaultNamespace": "IO.Swagger"
|
|
},
|
|
|
|
"dependencies": {
|
|
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
|
|
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
|
|
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
|
|
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
|
|
"Microsoft.Extensions.Configuration.FileProviderExtensions" : "1.0.0-rc1-final",
|
|
"Microsoft.Extensions.Logging": "1.0.0-rc1-final",
|
|
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
|
|
"Microsoft.Extensions.Logging.Debug" : "1.0.0-rc1-final",
|
|
"Swashbuckle.SwaggerGen": "6.0.0-rc1-final",
|
|
"Swashbuckle.SwaggerUi": "6.0.0-rc1-final"
|
|
},
|
|
|
|
"commands": {
|
|
"web": "Microsoft.AspNet.Server.Kestrel --server.urls http://0.0.0.0:5000"
|
|
},
|
|
|
|
"frameworks": {
|
|
"dnx451": { },
|
|
"dnxcore50": { }
|
|
},
|
|
|
|
"exclude": [
|
|
"wwwroot",
|
|
"node_modules",
|
|
"bower_components"
|
|
],
|
|
"publishExclude": [
|
|
"**.user",
|
|
"**.vspscc"
|
|
]
|
|
}
|