├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SwaggerResponseCodeCustomization.sln ├── SwaggerResponseCodeCustomization ├── App_Start │ ├── SwaggerConfig.cs │ └── WebApiConfig.cs ├── Controllers │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── Metadata │ └── deploymentTemplates │ │ └── apiappconfig.azureresource.json ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── SwaggerResponseCodeCustomization.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── XmlComments.xml ├── apiapp.json └── packages.config └── SwashbuckleResponseCodeCustomization.Client ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SwashbuckleResponseCodeCustomization.Client.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/README.md -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization.sln -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Global.asax -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Global.asax.cs -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Metadata/deploymentTemplates/apiappconfig.azureresource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Metadata/deploymentTemplates/apiappconfig.azureresource.json -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Project_Readme.html -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/SwaggerResponseCodeCustomization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/SwaggerResponseCodeCustomization.csproj -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Web.Debug.config -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Web.Release.config -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/Web.config -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/XmlComments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/XmlComments.xml -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/apiapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/apiapp.json -------------------------------------------------------------------------------- /SwaggerResponseCodeCustomization/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwaggerResponseCodeCustomization/packages.config -------------------------------------------------------------------------------- /SwashbuckleResponseCodeCustomization.Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwashbuckleResponseCodeCustomization.Client/App.config -------------------------------------------------------------------------------- /SwashbuckleResponseCodeCustomization.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwashbuckleResponseCodeCustomization.Client/Program.cs -------------------------------------------------------------------------------- /SwashbuckleResponseCodeCustomization.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwashbuckleResponseCodeCustomization.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SwashbuckleResponseCodeCustomization.Client/SwashbuckleResponseCodeCustomization.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwashbuckleResponseCodeCustomization.Client/SwashbuckleResponseCodeCustomization.Client.csproj -------------------------------------------------------------------------------- /SwashbuckleResponseCodeCustomization.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/app-service-api-dotnet-swashbuckle-swaggerresponse/HEAD/SwashbuckleResponseCodeCustomization.Client/packages.config --------------------------------------------------------------------------------