mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
43 lines
1.7 KiB
XML
43 lines
1.7 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.TimeDate</RootNamespace>
|
|||
|
|
<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.TimeDate.pri</ProjectPriFileName>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|||
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|||
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|||
|
|
<CustomToolNamespace>Microsoft.CmdPal.Ext.TimeDate</CustomToolNamespace>
|
|||
|
|
</EmbeddedResource>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<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 Include="Assets\TimeDate.png" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Content Update="Assets\TimeDate.png">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
<Content Update="Assets\TimeDate.svg">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</Content>
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|