Workspaces.Editor.UITests.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> 3 4 <PropertyGroup> 5 <LangVersion>latest</LangVersion> 6 <ImplicitUsings>enable</ImplicitUsings> 7 <Nullable>enable</Nullable> 8 <OutputType>Library</OutputType> 9 <RunVSTest>false</RunVSTest> 10 <IsTestProject>true</IsTestProject> 11 <IsPackable>false</IsPackable> 12 <AssemblyName>PowerToys.Workspaces.UITests</AssemblyName> 13 </PropertyGroup> 14 15 <PropertyGroup> 16 <OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\Workspaces.UITests\</OutputPath> 17 </PropertyGroup> 18 19 <ItemGroup> 20 <PackageReference Include="Appium.WebDriver" /> 21 <PackageReference Include="MSTest" /> 22 </ItemGroup> 23 24 <ItemGroup> 25 <ProjectReference Include="..\..\..\common\UITestAutomation\UITestAutomation.csproj" /> 26 <ProjectReference Include="..\WorkspacesEditor\WorkspacesEditor.csproj" /> 27 </ItemGroup> 28 29 </Project>