mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
32 lines
1.0 KiB
XML
32 lines
1.0 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>
|
|||
|
|
<IsPackable>false</IsPackable>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\tests\AdvancedPaste.UnitTests\</OutputPath>
|
|||
|
|
<IsTestProject>true</IsTestProject>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Remove="Assets\image_with_text_example.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Include="Assets\image_with_text_example.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Moq" />
|
|||
|
|
<PackageReference Include="MSTest" />
|
|||
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\AdvancedPaste\AdvancedPaste.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|