mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
30 lines
984 B
XML
30 lines
984 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\Version.props" />
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
|
|||
|
|
<ProjectGuid>{D9C5DE64-6849-4278-91AD-9660AECF2876}</ProjectGuid>
|
|||
|
|
<RootNamespace>Microsoft.MouseJumpUI.UnitTests</RootNamespace>
|
|||
|
|
<IsPackable>false</IsPackable>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<Version>$(Version).0</Version>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\modules\MouseUtils\MouseJumpUI.UnitTests\</OutputPath>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.Windows.CsWinRT" />
|
|||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|||
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|||
|
|
<PackageReference Include="MSTest.TestFramework" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\MouseJumpUI\MouseJumpUI.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|