Copying the AspNet.Loader.dll only on non-kpm bundle scenario
This commit is contained in:
parent
777e6950fd
commit
9faa6f8230
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue