2023-02-24 13:30:30 +00: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" />
|
2024-08-08 07:29:21 -07:00
|
|
|
|
<Import Project="..\..\..\Common.SelfContained.props" />
|
2024-08-05 14:29:11 -07:00
|
|
|
|
|
2023-02-24 13:30:30 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<AssemblyTitle>PowerToys.MouseJumpUI</AssemblyTitle>
|
|
|
|
|
|
<AssemblyDescription>PowerToys MouseJumpUI</AssemblyDescription>
|
2023-07-20 00:12:46 +01:00
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)</OutputPath>
|
2023-02-24 13:30:30 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<StartupObject>MouseJumpUI.Program</StartupObject>
|
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2023-03-17 18:12:27 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2023-02-24 13:30:30 +00:00
|
|
|
|
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
|
|
|
|
|
|
<ProjectGuid>{D962A009-834F-4EEC-AABB-430DF8F98E39}</ProjectGuid>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<RootNamespace>MouseJumpUI</RootNamespace>
|
|
|
|
|
|
<AssemblyName>PowerToys.MouseJumpUI</AssemblyName>
|
|
|
|
|
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info -->
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes>
|
|
|
|
|
|
<CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir>
|
|
|
|
|
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-10-11 15:58:19 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
2023-02-24 13:30:30 +00:00
|
|
|
|
<ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
2023-04-24 16:15:07 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj" />
|
2023-02-24 13:30:30 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|