mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<RootNamespace>Microsoft.CmdPal.Ext.Apps</RootNamespace>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal</OutputPath>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="System.IO.Abstractions" />
|
|||
|
|
<PackageReference Include="Microsoft.Windows.CsWin32">
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
|
|||
|
|
<PackageReference Include="WyHash" />
|
|||
|
|
|
|||
|
|
<ProjectReference Include="..\..\..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
|||
|
|
|
|||
|
|
<ProjectReference Include="..\..\extensionsdk\Microsoft.CommandPalette.Extensions.Toolkit\Microsoft.CommandPalette.Extensions.Toolkit.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|||
|
|
<DesignTime>True</DesignTime>
|
|||
|
|
<AutoGen>True</AutoGen>
|
|||
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|||
|
|
</Compile>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Assets\AllApps.png" />
|
|||
|
|
<None Remove="Assets\AllApps.svg" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Update="Assets\AllApps.png">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Update="Assets\AllApps.svg">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|||
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|||
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|||
|
|
</EmbeddedResource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|