2022-01-18 15:52:22 +01: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 -->
|
|
|
|
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-08-06 10:10:44 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<ProjectGuid>{F8B870EB-D5F5-45BA-9CF7-A5C459818820}</ProjectGuid>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>Microsoft.Plugin.Indexer</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Microsoft.Plugin.Indexer</AssemblyName>
|
2024-08-05 06:32:05 -07:00
|
|
|
|
|
2020-08-06 10:10:44 -07:00
|
|
|
|
<useWPF>true</useWPF>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-05-19 14:02:08 +01:00
|
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
2023-07-20 00:12:46 +01:00
|
|
|
|
<OutputPath>..\..\..\..\..\$(Platform)\$(Configuration)\RunPlugins\Indexer\</OutputPath>
|
2020-08-06 10:10:44 -07:00
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-08-06 10:10:44 -07:00
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
|
<PackageReference Include="System.Data.OleDb" />
|
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>
|
2020-08-06 10:10:44 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-12-15 12:56:52 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\..\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj">
|
2020-10-29 14:46:09 -07:00
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
2021-12-15 12:56:52 +01:00
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
|
2020-10-29 14:46:09 -07:00
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
2020-08-06 10:10:44 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Images\indexer.dark.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\indexer.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\Warning.dark.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\Warning.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Wox.Test</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
</ItemGroup>
|
2022-07-19 22:40:40 +02:00
|
|
|
|
|
2020-09-02 15:24:59 -07:00
|
|
|
|
<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>
|
2020-08-06 10:10:44 -07:00
|
|
|
|
</Project>
|