You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
In ApplicationDeployerFactory.cs we're ifdeffing on DNX451 but not on NET451. Is this by design? Is there a reason we can't include NET451 too?
It's currently making a couple of tests in the Performance repository to fail with message:
Startup [Variation: StarterMvc_IISScenario] [Stage: Collection] [Iteration: 1/1] [FAIL]
System.NotSupportedException : Found no deployers suitable for server type 'IIS' with the current runtime.
Stack Trace:
at Microsoft.AspNetCore.Server.Testing.ApplicationDeployerFactory.Create(DeploymentParameters deploymentParameters, ILogger logger)
D:\GitHub\aspnet\Performance\src\Benchmarks.Utility\Helpers\IISTestManager.cs(51,0): at Benchmarks.Utility.Helpers.IISTestManager.Initialize(ILoggerFactory loggerFactory)
D:\GitHub\aspnet\Performance\test\Microsoft.AspNetCore.Tests.Performance\WebIISPerformance.cs(30,0): at Microsoft.AspNetCore.Tests.Performance.WebIISPerformance..ctor(IISTestManager testManager)
If this is a DNX451 scenario only I'll disable these tests on non-DNX451 runtimes.
The text was updated successfully, but these errors were encountered:
FYI we're not using the IIS Deployer in any of our automated tests because it requires running as admin. As such it hasn't been actively maintained and may have regressed due to recent framework churn.
In ApplicationDeployerFactory.cs we're ifdeffing on DNX451 but not on NET451. Is this by design? Is there a reason we can't include NET451 too?
It's currently making a couple of tests in the Performance repository to fail with message:
If this is a DNX451 scenario only I'll disable these tests on non-DNX451 runtimes.
The text was updated successfully, but these errors were encountered: