mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-08-29 10:09:43 +02:00
39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
||
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>net10.0-windows10.0.26100.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<IsPackable>false</IsPackable>
|
||
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||
|
|
<RootNamespace>Microsoft.PowerToys.PowerRename.UITests</RootNamespace>
|
||
|
|
<AssemblyName>PowerRename.UITests.Next</AssemblyName>
|
||
|
|
<!-- Element.Click uses physical winappcli bounds with Win32 cursor input. -->
|
||
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
|
|
||
|
|
<IsTestingPlatformApplication>true</IsTestingPlatformApplication>
|
||
|
|
<EnableMSTestRunner>true</EnableMSTestRunner>
|
||
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
||
|
|
|
||
|
|
<!-- UI tests need a live desktop; never run them as part of MSBuild. -->
|
||
|
|
<RunVSTest>false</RunVSTest>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<!-- Stage the built test app under <Platform>\<Configuration>\tests\ so the UI-tests build
|
||
|
|
pipeline (CopyFiles glob **/<plat>/<config>/tests/**) picks it up. -->
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\PowerRename.UITests.Next\</OutputPath>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="MSTest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\..\common\UITestAutomation.Next\UITestAutomation.Next.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|