SDammann.WebApi.Versioning
SDammann.WebApi.Versioning copied to clipboard
Versioning support for ASP.NET Web Api
@Sebazzz first thank you for creating this package it is exactly what I was looking for. Currently I am using the following route: config.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/v{version}/{controller}/{id}", defaults: new...
Hello, I'm getting the following error when I try to access and api method: Multiple types were found that match the controller named 'Grupos'. This can happen if the route...
See issue: https://github.com/Sebazzz/SDammann.WebApi.Versioning/issues/25
I have the following controller in my project: ``` namespace MyProject.Api.Version1 { [RoutePrefix("api/something")] public class SomethingController : ApiController { [Route("")] [HttpGet] public IHttpActionResult GetSomething() { return Ok(); } [Route("else")] [HttpGet]...
The DefaultAttributeControllerVersionDetector throws an ArgumentOutOfRange exception on line 18 when the ApiVersionAttribute is used with only a Major / Minor, or used with Major / Minor / Build. The reason...
Hi, First, thanks for this great library ! I have a question : is it possible to use versioning with URL for major release, and HTTP Header versioning for minor...
I'm trying to create a custom versioning scheme that will allow a controller to "fall through" to a previous version of a controller if one is not defined for a...
Hi, I'm experimenting on a new WebAPI Solution and it builds fine initially. When I install the Install-Package SDammann.WebApi.Versioning package I get the following error on building: ## Error 2...
I updated to 3.0.0-beta3 to incorporate the new exception handling changes but I'm not getting an `ArgumentNullException` when the version header isn't supplied. My understanding was that I should expect...
I'd like to return different error messages to the user to attempt to explain the problems better. For example, rather than say that an API doesn't exist, I'd like to...