2026-02-06 16:12:44 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
2026-02-06 16:12:44 -08:00
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
2022-08-23 16:27:45 -04:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{212AD910-8488-4036-BE20-326931B75FB2}</ProjectGuid>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.History</RootNamespace>
|
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Run.Plugin.History</AssemblyName>
|
2024-08-05 06:32:05 -07:00
|
|
|
|
2022-08-23 16:27:45 -04:00
|
|
|
<useWPF>true</useWPF>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
2026-02-06 16:12:44 -08:00
|
|
|
<OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\RunPlugins\History\</OutputPath>
|
2022-08-23 16:27:45 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\PowerLauncher\PowerLauncher.csproj">
|
|
|
|
|
<Private>False</Private>
|
|
|
|
|
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj">
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="Mages" />
|
2024-01-11 16:11:32 +00:00
|
|
|
<PackageReference Include="System.Drawing.Common">
|
|
|
|
|
<ExcludeAssets>runtime</ExcludeAssets> <!-- Should already be present on .net sdk runtime, so we avoid the conflicting runtime version from nuget -->
|
|
|
|
|
</PackageReference>
|
2024-11-13 01:13:23 +00:00
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager">
|
|
|
|
|
<ExcludeAssets>runtime</ExcludeAssets> <!-- Should already be present on .net sdk runtime, so we avoid the conflicting runtime version from nuget -->
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Diagnostics.EventLog">
|
|
|
|
|
<ExcludeAssets>runtime</ExcludeAssets> <!-- Should already be present on .net sdk runtime, so we avoid the conflicting runtime version from nuget -->
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Diagnostics.PerformanceCounter">
|
|
|
|
|
<ExcludeAssets>runtime</ExcludeAssets> <!-- Should already be present on .net sdk runtime, so we avoid the conflicting runtime version from nuget -->
|
|
|
|
|
</PackageReference>
|
2022-08-23 16:27:45 -04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Images\history.dark.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Images\history.light.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|