mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 05:06:36 +02:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\Version.props" />
|
|||
|
|
|
|||
|
|
<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>
|
|||
|
|
<Version>$(Version).0</Version>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\tests\UITests-FancyZonesEditor\</OutputPath>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Appium.WebDriver" />
|
|||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|||
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|||
|
|
<PackageReference Include="MSTest.TestFramework" />
|
|||
|
|
<PackageReference Include="System.IO.Abstractions" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="Properties\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\FancyZonesEditorCommon\FancyZonesEditorCommon.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|