Skip to content

AspNetCore.Proxy 2.0.0

Compare
Choose a tag to compare
@twitchax twitchax released this 17 Mar 10:47
· 151 commits to master since this release

This release utilizes Microsoft.Extensions.Http for the underlying HttpClient creation.

There is a breaking change. The required services must now be applied in ConfigureServices.

public void ConfigureServices(IServiceCollection services)
{
    ...
    services.AddProxies();
    ...
}