From afa144cd169798ee8a49f5a41b14fb81d92f90ef Mon Sep 17 00:00:00 2001 From: Matt Cooley Date: Mon, 28 Oct 2019 10:54:26 -0700 Subject: [PATCH] Remove unnecessary dependencies from UITestFramework project (#745) The CalculatorUITestFramework project does not need Microsoft.NET.Test.Sdk or MSTest.TestAdapter. These dependencies are needed only in the project which produces the actual test assembly (in our case, the CalculatorUITests project). Removing these resolves a build warning, since the test adapter package does not target .NET Standard. --- src/CalculatorUITestFramework/CalculatorUITestFramework.csproj | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CalculatorUITestFramework/CalculatorUITestFramework.csproj b/src/CalculatorUITestFramework/CalculatorUITestFramework.csproj index 8c096d59..cdf09478 100644 --- a/src/CalculatorUITestFramework/CalculatorUITestFramework.csproj +++ b/src/CalculatorUITestFramework/CalculatorUITestFramework.csproj @@ -6,8 +6,6 @@ - -