AdvancedPaste-UITests.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 <!-- Look at Directory.Build.props in root for common stuff as well --> 3 <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> 4 5 <PropertyGroup> 6 <ProjectGuid>{2B1505FA-132A-460B-B22B-7CC3FFAB0C5D}</ProjectGuid> 7 <RootNamespace>Microsoft.AdvancedPaste.UITests</RootNamespace> 8 <IsPackable>false</IsPackable> 9 <Nullable>enable</Nullable> 10 <OutputType>Library</OutputType> 11 12 <!-- This is a UI test, so don't run as part of MSBuild --> 13 <RunVSTest>false</RunVSTest> 14 </PropertyGroup> 15 16 <PropertyGroup> 17 <OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\UITests-AdvancedPaste\</OutputPath> 18 </PropertyGroup> 19 20 <ItemGroup> 21 <PackageReference Include="Appium.WebDriver" /> 22 <PackageReference Include="MSTest" /> 23 <PackageReference Include="System.Net.Http" /> 24 <PackageReference Include="System.Private.Uri" /> 25 <PackageReference Include="System.Text.RegularExpressions" /> 26 </ItemGroup> 27 28 <ItemGroup> 29 <ProjectReference Include="..\..\..\common\UITestAutomation\UITestAutomation.csproj" /> 30 </ItemGroup> 31 32 <ItemGroup> 33 <Content Include="TestFiles\**\*.*"> 34 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 35 </Content> 36 </ItemGroup> 37 38 </Project>