2022-05-11 13:35:18 +03: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" />
|
|
|
|
|
|
|
2022-05-11 13:35:18 +03:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<AssemblyTitle>UnitTests-SvgPreviewHandler</AssemblyTitle>
|
|
|
|
|
|
<AssemblyDescription>PowerToys UnitTests-SvgPreviewHandler</AssemblyDescription>
|
|
|
|
|
|
<AssemblyTitle>UnitTests-SvgPreviewHandler</AssemblyTitle>
|
|
|
|
|
|
<Description>PowerToys UnitTests-SvgPreviewHandler</Description>
|
|
|
|
|
|
<ProjectGuid>{060D75DA-2D1C-48E6-A4A1-6F0718B64661}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>SvgPreviewHandlerUnitTests</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-12-14 13:37:23 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="HelperFiles\file1.svg" />
|
|
|
|
|
|
<None Remove="HelperFiles\file2.svg" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-05-11 13:35:18 +03:00
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
|
<PackageReference Include="Moq" />
|
2024-07-26 12:57:06 +02:00
|
|
|
|
<PackageReference Include="MSTest" />
|
2024-09-11 08:36:34 -07:00
|
|
|
|
<PackageReference Include="Microsoft.Web.WebView2" />
|
2022-05-11 13:35:18 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\common\PreviewHandlerCommon.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\SvgPreviewHandler\SvgPreviewHandler.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="HelperFiles\file1.svg">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="HelperFiles\file2.svg">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2020-03-11 15:53:49 -07:00
|
|
|
|
</Project>
|