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.
13 lines
315 B
XML
13 lines
315 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Appium.WebDriver" Version="4.0.0.6-beta" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|