mirror of
https://github.com/microsoft/PowerToys
synced 2025-08-30 22:15:11 +00:00
- [x] **Tests:** Added/updated and all pass - [x] **Dev docs:** Added/updated <img width="460" height="1017" alt="image" src="https://github.com/user-attachments/assets/e72bf221-0875-48c3-b790-4ab1182c7d3a" /> I haven't touched the Run module, since we may deprecate it. Closes: #40788
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
<Import Project="..\..\..\Common.Dotnet.CsWinRT.props" />
|
|
|
|
<PropertyGroup>
|
|
<AssemblyTitle>UnitTests-PdfPreviewHandler</AssemblyTitle>
|
|
<AssemblyDescription>PowerToys UnitTests-PdfPreviewHandler</AssemblyDescription>
|
|
<AssemblyTitle>UnitTests-PdfPreviewHandler</AssemblyTitle>
|
|
<Description>PowerToys UnitTests-PdfPreviewHandler</Description>
|
|
<ProjectGuid>{ECC20689-002A-4354-95A6-B58DF089C6FF}</ProjectGuid>
|
|
<RootNamespace>PdfPreviewHandlerUnitTests</RootNamespace>
|
|
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
|
|
<IsCodedUITest>False</IsCodedUITest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="HelperFiles\dummy-password.pdf" />
|
|
<None Remove="HelperFiles\dummy.pdf" />
|
|
<None Remove="HelperFiles\sample.pdf" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="MSTest" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\common\PreviewHandlerCommon.csproj" />
|
|
<ProjectReference Include="..\PdfPreviewHandler\PdfPreviewHandler.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="HelperFiles\sample.pdf">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|