2024-03-22 13:10:10 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-05 06:32:05 -07:00
|
|
|
|
|
2024-03-22 13:10:10 +01:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0-windows10.0.20348.0</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
|
|
|
|
|
|
<ProjectGuid>{3A9A791E-94A9-49F8-8401-C11CE288D5FB}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>Microsoft.FancyZonesEditor.UITests</RootNamespace>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2024-08-05 06:32:05 -07:00
|
|
|
|
|
2024-04-02 11:47:58 -07:00
|
|
|
|
<!-- This is a UI test, so don't run as part of MSBuild -->
|
|
|
|
|
|
<RunVSTest>false</RunVSTest>
|
2024-03-22 13:10:10 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\tests\UITests-FancyZonesEditor\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Appium.WebDriver" />
|
2024-07-26 12:57:06 +02:00
|
|
|
|
<PackageReference Include="MSTest" />
|
2024-03-22 13:10:10 +01:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="Properties\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\FancyZonesEditorCommon\FancyZonesEditorCommon.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|