Keep the GUI as the index writer for now; mutex, named pipe, and opt-in logon autostart prepare Explorer.Host.exe without two SQLite writers. Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
1.7 KiB
XML
30 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<RootNamespace>Explorer.Hosting</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Explorer.Analysis\Explorer.Analysis.csproj" />
|
|
<ProjectReference Include="..\Explorer.Application\Explorer.Application.csproj" />
|
|
<ProjectReference Include="..\Explorer.Contracts\Explorer.Contracts.csproj" />
|
|
<ProjectReference Include="..\Explorer.Domain\Explorer.Domain.csproj" />
|
|
<ProjectReference Include="..\Explorer.FileOperations\Explorer.FileOperations.csproj" />
|
|
<ProjectReference Include="..\Explorer.Indexing\Explorer.Indexing.csproj" />
|
|
<ProjectReference Include="..\Explorer.Plugin.Abstractions\Explorer.Plugin.Abstractions.csproj" />
|
|
<ProjectReference Include="..\Explorer.Plugin.GoogleDrive\Explorer.Plugin.GoogleDrive.csproj" />
|
|
<ProjectReference Include="..\Explorer.Plugin.Nextcloud\Explorer.Plugin.Nextcloud.csproj" />
|
|
<ProjectReference Include="..\Explorer.Plugin.OneDrive\Explorer.Plugin.OneDrive.csproj" />
|
|
<ProjectReference Include="..\Explorer.Search\Explorer.Search.csproj" />
|
|
<ProjectReference Include="..\Explorer.Storage.Sqlite\Explorer.Storage.Sqlite.csproj" />
|
|
<ProjectReference Include="..\Explorer.Windows\Explorer.Windows.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="Explorer.Hosting.Tests" />
|
|
</ItemGroup>
|
|
</Project>
|