mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
* [Mouse Jump] - moving common code to MouseJump.Common project - #25482 * [Mouse Jump] - fixing warnings in MouseJump.Common - #25482 * [MouseJump] - cherrypick 5653b4 - Exclude MouseJump Common tests from the checks # Conflicts: # src/modules/MouseUtils/MouseJump.Common.UnitTests/MouseJump.Common.UnitTests.csproj * [mOuSEjUMP] - cherry pick 61aab9 - Fix ci build issues # Conflicts: # src/modules/MouseUtils/MouseJump.Common.UnitTests/MouseJump.Common.UnitTests.csproj * [Mouse Jump] - remove project type guids - #25482 * [Mouse Jump] - simplify mousejump *.csproj files - #25482 * [Mouse Jump] - fixing broken tests - #25482 * [Mouse Jump] - fixing broken build - #25482 * [Mouse Jump] - editing MouseJump.Common.UnitTests.csproj - #25482 * [Mouse Jump] - editing MouseJump.Common.csproj (UseWindowsForms=true) - #25482 * [Mouse Jump] - fixing spellcheck - #25482 * [MouseJump] - enabled implicit usings - #25482 * [Mouse Jump] - re-add csproj attributes - #27511 * ci: Fix signing of Common dll --------- Co-authored-by: Clayton <mike.clayton@delinian.com>
45 lines
1.6 KiB
XML
45 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>
|
|
|
|
<ProjectGuid>{D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}</ProjectGuid>
|
|
<AssemblyName>PowerToys.MouseJump.Common.UnitTests</AssemblyName>
|
|
<AssemblyTitle>PowerToys.MouseJump.Common.UnitTests</AssemblyTitle>
|
|
<AssemblyDescription>PowerToys MouseJump.Common.UnitTests</AssemblyDescription>
|
|
<OutputType>Library</OutputType>
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\tests\MouseJump.Common.UnitTests\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Helpers\_test-4grid-desktop.png" />
|
|
<None Remove="Helpers\_test-4grid-expected.png" />
|
|
<None Remove="Helpers\_test-win11-desktop.png" />
|
|
<None Remove="Helpers\_test-win11-expected.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Helpers\_test-4grid-desktop.png" />
|
|
<EmbeddedResource Include="Helpers\_test-4grid-expected.png" />
|
|
<EmbeddedResource Include="Helpers\_test-win11-desktop.png" />
|
|
<EmbeddedResource Include="Helpers\_test-win11-expected.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MSTest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MouseJump.Common\MouseJump.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|