From 53128bca0ee1a86160980ea7a2e2281736303222 Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Wed, 14 Jun 2017 20:06:11 -0700 Subject: [PATCH] Revert "Add "--no-restore" parameter to "dotnet publish" (#1101)" This reverts commit 007e3b6b51028a468e902e7ba3f747454cfd1cb2. --- .../Deployers/ApplicationDeployer.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs index d41ba1637a..6ec210ba07 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Deployers/ApplicationDeployer.cs @@ -56,11 +56,6 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting + $" --framework {DeploymentParameters.TargetFramework}" + $" --configuration {DeploymentParameters.Configuration}"; - // Workaround for: - // Publish fails on app with project reference to netstandard2.0 class library - // https://github.com/dotnet/cli/issues/6843 - parameters += " --no-restore"; - if (DeploymentParameters.ApplicationType == ApplicationType.Standalone) { parameters += $" --runtime {GetRuntimeIdentifier()}";