├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.sln ├── Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting ├── Models │ ├── MatchConfig.cs │ ├── SwaggerConfig.cs │ └── SwaggerRoutingOptions.cs ├── Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.csproj ├── netcore2x │ ├── ConventionalRoutingActionDescriptorCollectionProvider.cs │ ├── ConventionalRoutingApiDescriptionGroupCollectionProvider.cs │ ├── ConventionalRoutingApiDescriptionProvider.cs │ ├── ConventionalRoutingSwaggerGen.cs │ ├── ConventionalRoutingSwaggerGenerator.cs │ ├── Internals │ │ ├── ApiDescriptionActionData.cs │ │ ├── ApiParameterContext.cs │ │ ├── ApiResponseTypeProvider.cs │ │ ├── ParameterDefaultValue.cs │ │ └── ParameterDefaultValues.cs │ └── RouteTemplateResolver.cs └── netcore3x5x │ ├── ConventionalRoutingActionDescriptorCollectionProvider.cs │ ├── ConventionalRoutingApiDescriptionGroupCollectionProvider.cs │ ├── ConventionalRoutingApiDescriptionProvider.cs │ ├── ConventionalRoutingSwaggerGen.cs │ ├── ConventionalRoutingSwaggerGenerator.cs │ ├── Internals │ ├── ApiDescriptionActionData.cs │ ├── ApiParameterContext.cs │ ├── ApiResponseTypeProvider.cs │ ├── ParameterDefaultValue.cs │ └── ParameterDefaultValues.cs │ └── RouteTemplateResolver.cs ├── Web.API ├── Areas │ ├── Orders │ │ └── Controllers │ │ │ ├── InvoicesController.cs │ │ │ └── ItemsController.cs │ └── Products │ │ └── Controllers │ │ └── ItemsController.cs ├── Controllers │ ├── DefaultHttpMethodsController.cs │ ├── HelloWorldController.cs │ ├── HomeController.cs │ ├── MyPetController.cs │ ├── PetController.cs │ └── SportController.cs ├── Models │ ├── ApiResponse.cs │ ├── Category.cs │ ├── Order.cs │ ├── OrderStatus.cs │ ├── Pet.cs │ ├── PetStatus.cs │ ├── Tag.cs │ └── User.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── RegexMatchRouteConstraint.cs ├── Startup.cs ├── Web.API2x.csproj ├── appsettings.Development.json └── appsettings.json └── Web.API3x ├── Areas ├── Orders │ └── Controllers │ │ ├── InvoicesController.cs │ │ └── ItemsController.cs └── Products │ └── ItemsController.cs ├── Controllers ├── DefaultHttpMethodsController.cs ├── HelloWorldController.cs ├── HomeController.cs ├── MyPetController.cs ├── PetController.cs └── SportController.cs ├── Models ├── ApiResponse.cs ├── Category.cs ├── Order.cs ├── OrderStatus.cs ├── Pet.cs ├── PetStatus.cs ├── Tag.cs └── User.cs ├── Program.cs ├── Properties └── launchSettings.json ├── RegexMatchRouteConstraint.cs ├── Startup.cs ├── WeatherForecast.cs ├── Web.API_3x_5x_6x.csproj ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/README.md -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.sln -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/MatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/MatchConfig.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/SwaggerConfig.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/SwaggerRoutingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Models/SwaggerRoutingOptions.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting.csproj -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingActionDescriptorCollectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingActionDescriptorCollectionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingApiDescriptionGroupCollectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingApiDescriptionGroupCollectionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingApiDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingApiDescriptionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingSwaggerGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingSwaggerGen.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingSwaggerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/ConventionalRoutingSwaggerGenerator.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiDescriptionActionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiDescriptionActionData.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiParameterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiParameterContext.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiResponseTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ApiResponseTypeProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ParameterDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ParameterDefaultValue.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ParameterDefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/Internals/ParameterDefaultValues.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/RouteTemplateResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore2x/RouteTemplateResolver.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingActionDescriptorCollectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingActionDescriptorCollectionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingApiDescriptionGroupCollectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingApiDescriptionGroupCollectionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingApiDescriptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingApiDescriptionProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingSwaggerGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingSwaggerGen.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingSwaggerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/ConventionalRoutingSwaggerGenerator.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiDescriptionActionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiDescriptionActionData.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiParameterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiParameterContext.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiResponseTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ApiResponseTypeProvider.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ParameterDefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ParameterDefaultValue.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ParameterDefaultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/Internals/ParameterDefaultValues.cs -------------------------------------------------------------------------------- /Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/RouteTemplateResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/netcore3x5x/RouteTemplateResolver.cs -------------------------------------------------------------------------------- /Web.API/Areas/Orders/Controllers/InvoicesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Areas/Orders/Controllers/InvoicesController.cs -------------------------------------------------------------------------------- /Web.API/Areas/Orders/Controllers/ItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Areas/Orders/Controllers/ItemsController.cs -------------------------------------------------------------------------------- /Web.API/Areas/Products/Controllers/ItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Areas/Products/Controllers/ItemsController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/DefaultHttpMethodsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/DefaultHttpMethodsController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/HelloWorldController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/HelloWorldController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/MyPetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/MyPetController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/PetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/PetController.cs -------------------------------------------------------------------------------- /Web.API/Controllers/SportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Controllers/SportController.cs -------------------------------------------------------------------------------- /Web.API/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/ApiResponse.cs -------------------------------------------------------------------------------- /Web.API/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/Category.cs -------------------------------------------------------------------------------- /Web.API/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/Order.cs -------------------------------------------------------------------------------- /Web.API/Models/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/OrderStatus.cs -------------------------------------------------------------------------------- /Web.API/Models/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/Pet.cs -------------------------------------------------------------------------------- /Web.API/Models/PetStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/PetStatus.cs -------------------------------------------------------------------------------- /Web.API/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/Tag.cs -------------------------------------------------------------------------------- /Web.API/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Models/User.cs -------------------------------------------------------------------------------- /Web.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Program.cs -------------------------------------------------------------------------------- /Web.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Web.API/RegexMatchRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/RegexMatchRouteConstraint.cs -------------------------------------------------------------------------------- /Web.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Startup.cs -------------------------------------------------------------------------------- /Web.API/Web.API2x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/Web.API2x.csproj -------------------------------------------------------------------------------- /Web.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/appsettings.Development.json -------------------------------------------------------------------------------- /Web.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API/appsettings.json -------------------------------------------------------------------------------- /Web.API3x/Areas/Orders/Controllers/InvoicesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Areas/Orders/Controllers/InvoicesController.cs -------------------------------------------------------------------------------- /Web.API3x/Areas/Orders/Controllers/ItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Areas/Orders/Controllers/ItemsController.cs -------------------------------------------------------------------------------- /Web.API3x/Areas/Products/ItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Areas/Products/ItemsController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/DefaultHttpMethodsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/DefaultHttpMethodsController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/HelloWorldController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/HelloWorldController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/MyPetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/MyPetController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/PetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/PetController.cs -------------------------------------------------------------------------------- /Web.API3x/Controllers/SportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Controllers/SportController.cs -------------------------------------------------------------------------------- /Web.API3x/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/ApiResponse.cs -------------------------------------------------------------------------------- /Web.API3x/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/Category.cs -------------------------------------------------------------------------------- /Web.API3x/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/Order.cs -------------------------------------------------------------------------------- /Web.API3x/Models/OrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/OrderStatus.cs -------------------------------------------------------------------------------- /Web.API3x/Models/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/Pet.cs -------------------------------------------------------------------------------- /Web.API3x/Models/PetStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/PetStatus.cs -------------------------------------------------------------------------------- /Web.API3x/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/Tag.cs -------------------------------------------------------------------------------- /Web.API3x/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Models/User.cs -------------------------------------------------------------------------------- /Web.API3x/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Program.cs -------------------------------------------------------------------------------- /Web.API3x/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Properties/launchSettings.json -------------------------------------------------------------------------------- /Web.API3x/RegexMatchRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/RegexMatchRouteConstraint.cs -------------------------------------------------------------------------------- /Web.API3x/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Startup.cs -------------------------------------------------------------------------------- /Web.API3x/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/WeatherForecast.cs -------------------------------------------------------------------------------- /Web.API3x/Web.API_3x_5x_6x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/Web.API_3x_5x_6x.csproj -------------------------------------------------------------------------------- /Web.API3x/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/appsettings.Development.json -------------------------------------------------------------------------------- /Web.API3x/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chsakell/Swashbuckle.AspNetCore.SwaggerGen.ConventionalRouting/HEAD/Web.API3x/appsettings.json --------------------------------------------------------------------------------