mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 04:37:30 +02:00
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\Version.props" />
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
|
|||
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|||
|
|
<RootNamespace>Peek.Common</RootNamespace>
|
|||
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|||
|
|
<UseWinUI>true</UseWinUI>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<COMReference Include="Scripting">
|
|||
|
|
<WrapperTool>tlbimp</WrapperTool>
|
|||
|
|
<VersionMinor>0</VersionMinor>
|
|||
|
|
<VersionMajor>1</VersionMajor>
|
|||
|
|
<Guid>420b2830-e718-11cf-893d-00a0c9054228</Guid>
|
|||
|
|
<Lcid>0</Lcid>
|
|||
|
|
<Isolated>false</Isolated>
|
|||
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|||
|
|
</COMReference>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.Windows.CsWin32">
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" />
|
|||
|
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|