2026-02-06 16:12:44 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
2025-07-09 14:32:40 +08:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<RootNamespace>PowerRename.UITests</RootNamespace>
|
|
|
|
|
<AssemblyName>PowerRename.UITests</AssemblyName>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<!-- This is a UI test, so don't run as part of MSBuild -->
|
|
|
|
|
<RunVSTest>false</RunVSTest>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\tests\PowerRename.UITests\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="BasicRenameTests.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="MSTest" />
|
|
|
|
|
<PackageReference Include="System.Net.Http" />
|
|
|
|
|
<PackageReference Include="System.Private.Uri" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" />
|
|
|
|
|
<ProjectReference Include="..\..\..\common\UITestAutomation\UITestAutomation.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- Copy testItems folder and all contents to output directory -->
|
|
|
|
|
<Content Include="testItems\**\*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|