in LogicAppsSampleTestFramework/TestFramework/MockHttpHost.cs [84:101]
public void ConfigureServices(IServiceCollection services)
{
services
.Configure<IISServerOptions>(options =>
{
options.AllowSynchronousIO = true;
})
.AddResponseCompression(options =>
{
options.EnableForHttps = true;
options.Providers.Add<GzipCompressionProvider>();
})
.AddMvc(options =>
{
options.EnableEndpointRouting = true;
})
.SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
}