React to ANCM dll location changes (#1258)

This commit is contained in:
Justin Kotalik 2017-11-10 11:55:31 -08:00 committed by GitHub
parent 40bd6e560e
commit 67c028a3cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
string ancmPath;
// We need to pick the bitness based the OS / IIS Express, not the application.
// We'll eventually add support for choosing which IIS Express bitness to run: https://github.com/aspnet/Hosting/issues/880
var ancmFile = Is64BitHost ? "aspnetcore_x64.dll" : "aspnetcore_x86.dll";
var ancmFile = Is64BitHost ? "\x64\aspnetcore.dll" : "\x86\aspnetcore.dll";
// Bin deployed by Microsoft.AspNetCore.AspNetCoreModule.nupkg
if (DeploymentParameters.RuntimeFlavor == RuntimeFlavor.CoreClr
&& DeploymentParameters.ApplicationType == ApplicationType.Portable)