2026-02-06 16:12:44 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-07-23 17:18:04 +08:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
2026-02-06 16:12:44 -08:00
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
2025-07-23 17:18:04 +08:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{29B91A80-0590-4B1F-89B8-4F8812A7F116}</ProjectGuid>
|
|
|
|
|
<RootNamespace>Microsoft.Settings.UITests</RootNamespace>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
|
|
|
|
<!-- This is a UI test, so don't run as part of MSBuild -->
|
|
|
|
|
<RunVSTest>false</RunVSTest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-02-06 16:12:44 -08:00
|
|
|
<OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\UITests-Settings\</OutputPath>
|
2025-07-23 17:18:04 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Appium.WebDriver" />
|
|
|
|
|
<PackageReference Include="MSTest" />
|
|
|
|
|
<PackageReference Include="System.Net.Http" />
|
|
|
|
|
<PackageReference Include="System.Private.Uri" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\common\UITestAutomation\UITestAutomation.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|