mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<RootNamespace>Microsoft.CmdPal.Ext.Calc</RootNamespace>
|
|||
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal</OutputPath>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
<!-- MRT from windows app sdk will search for a pri file with the same name of the module before defaulting to resources.pri -->
|
|||
|
|
<ProjectPriFileName>Microsoft.CmdPal.Ext.Calc.pri</ProjectPriFileName>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\extensionsdk\Microsoft.CommandPalette.Extensions.Toolkit\Microsoft.CommandPalette.Extensions.Toolkit.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|||
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|||
|
|
<DesignTime>True</DesignTime>
|
|||
|
|
<AutoGen>True</AutoGen>
|
|||
|
|
</Compile>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Assets\Calculator.svg" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Update="Assets\Calculator.png">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Update="Assets\Calculator.svg">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|||
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|||
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|||
|
|
</EmbeddedResource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|