mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
68 lines
2.5 KiB
XML
68 lines
2.5 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\Version.props" />
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
|
|||
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|||
|
|
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
|
|||
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Authors>Microsoft Corporation</Authors>
|
|||
|
|
<Product>PowerToys</Product>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<Description>PowerToys CommandNotFound</Description>
|
|||
|
|
<AssemblyName>PowerToys.CmdNotFound</AssemblyName>
|
|||
|
|
<GenerateDependencyFile>false</GenerateDependencyFile>
|
|||
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|||
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)</OutputPath>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
<SelfContained>true</SelfContained>
|
|||
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<!-- SelfContained=true requires RuntimeIdentifier to be set -->
|
|||
|
|
<PropertyGroup Condition="'$(Platform)'=='x64'">
|
|||
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<PropertyGroup Condition="'$(Platform)'=='ARM64'">
|
|||
|
|
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|||
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|||
|
|
<DebugType>full</DebugType>
|
|||
|
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
|
<WarningLevel>4</WarningLevel>
|
|||
|
|
<Optimize>false</Optimize>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|||
|
|
<DefineConstants>TRACE;RELEASE</DefineConstants>
|
|||
|
|
<Optimize>true</Optimize>
|
|||
|
|
<DebugType>pdbonly</DebugType>
|
|||
|
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
|
<WarningLevel>4</WarningLevel>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.ObjectPool">
|
|||
|
|
<ExcludeAssets>contentFiles</ExcludeAssets>
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
<PackageReference Include="System.Management.Automation">
|
|||
|
|
<ExcludeAssets>contentFiles</ExcludeAssets>
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
<Content Include="WinGetCommandNotFound.psd1">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|