Copying the AspNet.Loader.dll only on non-kpm bundle scenario

This commit is contained in:
Praburaj 2015-03-18 11:38:03 -07:00
parent 777e6950fd
commit 9faa6f8230
1 changed files with 4 additions and 1 deletions

View File

@ -180,7 +180,10 @@ namespace E2ETests
startParameters.ApplicationHostConfigTemplateContent.Replace("[ApplicationPhysicalPath]", Path.Combine(startParameters.ApplicationPath, "wwwroot"));
}
IISExpressHelper.CopyAspNetLoader(startParameters.ApplicationPath);
if (!startParameters.BundleApplicationBeforeStart)
{
IISExpressHelper.CopyAspNetLoader(startParameters.ApplicationPath);
}
if (!string.IsNullOrWhiteSpace(startParameters.ApplicationHostConfigTemplateContent))
{