Fix IIS Express deployer for Win7

This commit is contained in:
Chris Ross (WEB TOOLS) 2016-11-23 10:58:42 -08:00
parent 3003b4c5e6
commit 077bc8104e
2 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
ancmPath = Path.Combine(contentRoot, ancmFile); ancmPath = Path.Combine(contentRoot, ancmFile);
} }
if (!File.Exists(ancmPath)) if (!File.Exists(Environment.ExpandEnvironmentVariables(ancmPath)))
{ {
throw new FileNotFoundException("AspNetCoreModule could not be found.", ancmPath); throw new FileNotFoundException("AspNetCoreModule could not be found.", ancmPath);
} }

View File

@ -37,6 +37,7 @@
"type": "build", "type": "build",
"version": "1.2.0-*" "version": "1.2.0-*"
}, },
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"NETStandard.Library": "1.6.1-*" "NETStandard.Library": "1.6.1-*"
}, },
"frameworks": { "frameworks": {