mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
48 lines
2.0 KiB
XML
48 lines
2.0 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
|||
|
|
<Import Project="..\..\Microsoft.CmdPal.UI\CmdPal.pre.props" />
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<RootNamespace>Microsoft.CmdPal.Ext.WindowsTerminal</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.WindowsTerminal.pri</ProjectPriFileName>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Remove="Assets\WindowsTerminal.svg" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<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>
|
|||
|
|
<Content Remove="Assets\WindowsTerminal.dark.png" />
|
|||
|
|
<Content Remove="Assets\WindowsTerminal.dark.png" />
|
|||
|
|
<Content Remove="Assets\WindowsTerminal.light.png" />
|
|||
|
|
<Content Remove="Assets\WindowsTerminal.light.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Update="Assets\WindowsTerminal.png">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Update="Assets\WindowsTerminal.svg">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|||
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|||
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|||
|
|
</EmbeddedResource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|