forked from loafle/openapi-generator-original
The AspNet5 generator was originally written to support project.json. The Project.xproj was implemented without a valid project guid or root namespace. During the transition period from project.json to Project.xproj, VS2015 would fallback to project.json. Newer versions of VS2015 don't seem to do this any longer. This commit defines the project's guid correctly, and sets the project's root namespace. See: #3680
26 lines
491 B
Markdown
26 lines
491 B
Markdown
# IO.Swagger - ASP.NET Core 1.0 Server
|
|
|
|
This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
|
|
## Run
|
|
|
|
Linux/OS X:
|
|
|
|
```
|
|
sh build.sh
|
|
```
|
|
|
|
Windows:
|
|
|
|
```
|
|
build.bat
|
|
```
|
|
|
|
## Run in Docker
|
|
|
|
```
|
|
cd src/IO.Swagger
|
|
docker build -t IO.Swagger .
|
|
docker run -p 5000:5000 IO.Swagger
|
|
```
|