2021-09-14 18:01:45 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
|
<Import Project="..\..\..\Common.Dotnet.CsWinRT.props" />
|
|
|
|
|
|
|
2021-09-14 18:01:45 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<AssemblyTitle>UnitTests-PdfThumbnailProvider</AssemblyTitle>
|
|
|
|
|
|
<AssemblyDescription>PowerToys UnitTests-PdfThumbnailProvider</AssemblyDescription>
|
|
|
|
|
|
<AssemblyTitle>UnitTests-PdfThumbnailProvider</AssemblyTitle>
|
|
|
|
|
|
<Description>PowerToys UnitTests-PdfThumbnailProvider</Description>
|
|
|
|
|
|
<ProjectGuid>{F40C3397-1834-4530-B2D9-8F8B8456BCDF}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>PdfThumbnailProviderUnitTests</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>
|
|
|
|
|
|
<TestProjectType>UnitTest</TestProjectType>
|
|
|
|
|
|
</PropertyGroup>
|
2022-01-18 15:52:22 +01:00
|
|
|
|
|
2021-09-14 18:01:45 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="HelperFiles\sample.pdf" />
|
|
|
|
|
|
</ItemGroup>
|
2022-01-18 15:52:22 +01:00
|
|
|
|
|
2021-09-14 18:01:45 +02:00
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
|
<PackageReference Include="Moq" />
|
2024-07-26 12:57:06 +02:00
|
|
|
|
<PackageReference Include="MSTest" />
|
2021-09-14 18:01:45 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Common\PreviewHandlerCommon.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\PdfThumbnailProvider\PdfThumbnailProvider.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\STATestClassAttribute.cs" Link="STATestClassAttribute.cs" />
|
|
|
|
|
|
<Compile Include="..\STATestMethodAttribute.cs" Link="STATestMethodAttribute.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="HelperFiles\sample.pdf">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2022-01-18 15:52:22 +01:00
|
|
|
|
</Project>
|