MouseJump.Common.UnitTests.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 <!-- Look at Directory.Build.props in root for common stuff as well --> 3 <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> 4 5 <PropertyGroup> 6 7 <ProjectGuid>{D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}</ProjectGuid> 8 <AssemblyName>PowerToys.MouseJump.Common.UnitTests</AssemblyName> 9 <AssemblyTitle>PowerToys.MouseJump.Common.UnitTests</AssemblyTitle> 10 <AssemblyDescription>PowerToys MouseJump.Common.UnitTests</AssemblyDescription> 11 <OutputType>Library</OutputType> 12 <OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\MouseJump.Common.UnitTests\</OutputPath> 13 <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> 14 <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> 15 16 <Nullable>enable</Nullable> 17 <UseWindowsForms>true</UseWindowsForms> 18 <ImplicitUsings>enable</ImplicitUsings> 19 20 </PropertyGroup> 21 22 <ItemGroup> 23 <None Remove="Helpers\_test-4grid-desktop.png" /> 24 <None Remove="Helpers\_test-4grid-expected.png" /> 25 <None Remove="Helpers\_test-win11-desktop.png" /> 26 <None Remove="Helpers\_test-win11-expected.png" /> 27 </ItemGroup> 28 29 <ItemGroup> 30 <EmbeddedResource Include="Helpers\_test-4grid-desktop.png" /> 31 <EmbeddedResource Include="Helpers\_test-4grid-expected.png" /> 32 <EmbeddedResource Include="Helpers\_test-win11-desktop.png" /> 33 <EmbeddedResource Include="Helpers\_test-win11-expected.png" /> 34 </ItemGroup> 35 36 <ItemGroup> 37 <PackageReference Include="MSTest" /> 38 </ItemGroup> 39 40 <ItemGroup> 41 <ProjectReference Include="..\MouseJump.Common\MouseJump.Common.csproj" /> 42 </ItemGroup> 43 44 </Project>