| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <LangVersion>14</LangVersion> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <ImplicitUsings>enable</ImplicitUsings> |
| 8 | <RootNamespace>HybridCodebaseIndex.Core</RootNamespace> |
| 9 | <AssemblyName>HybridCodebaseIndex.Core</AssemblyName> |
| 10 | <Description>Гибридный индекс кодовой базы: SQLite FTS5, опционально vec/эмбеддинги, сканер workspace.</Description> |
| 11 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 12 | <PackageId>AIGuiders.HybridCodebaseIndex.Core</PackageId> |
| 13 | <Version>0.1.2</Version> |
| 14 | <Authors>LonelySoul; AIGuiders</Authors> |
| 15 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 16 | <PackageProjectUrl>https://github.com/AI-Guiders/hybrid-codebase-index-core</PackageProjectUrl> |
| 17 | <RepositoryUrl>https://github.com/AI-Guiders/hybrid-codebase-index-core</RepositoryUrl> |
| 18 | <RepositoryType>git</RepositoryType> |
| 19 | <PackageTags>fts;sqlite;codebase;index;mcp;embedding</PackageTags> |
| 20 | </PropertyGroup> |
| 21 | |
| 22 | <ItemGroup> |
| 23 | <PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0" /> |
| 24 | <PackageReference Include="Ignore" Version="0.2.1" /> |
| 25 | <PackageReference Include="Tomlyn" Version="2.3.0" /> |
| 26 | <PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.22.0" /> |
| 27 | <PackageReference Include="BERTTokenizers" Version="1.0.5" /> |
| 28 | </ItemGroup> |
| 29 | |
| 30 | <ItemGroup> |
| 31 | <EmbeddedResource Include="DefaultSettings\settings.default.toml" /> |
| 32 | </ItemGroup> |
| 33 | |
| 34 | <ItemGroup> |
| 35 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 36 | <_Parameter1>HybridCodebaseIndex.Core.Tests</_Parameter1> |
| 37 | </AssemblyAttribute> |
| 38 | </ItemGroup> |
| 39 | |
| 40 | <ItemGroup> |
| 41 | <Compile Update="SqliteFtsIndex.DocDraft.cs"> |
| 42 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 43 | </Compile> |
| 44 | <Compile Update="SqliteFtsIndex.Meta.cs"> |
| 45 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 46 | </Compile> |
| 47 | <Compile Update="SqliteFtsIndex.Paths.cs"> |
| 48 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 49 | </Compile> |
| 50 | <Compile Update="SqliteFtsIndex.Query.cs"> |
| 51 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 52 | </Compile> |
| 53 | <Compile Update="SqliteFtsIndex.Reindex.cs"> |
| 54 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 55 | </Compile> |
| 56 | <Compile Update="SqliteFtsIndex.Reindex.FullRebuild.cs"> |
| 57 | <DependentUpon>SqliteFtsIndex.Reindex.cs</DependentUpon> |
| 58 | </Compile> |
| 59 | <Compile Update="SqliteFtsIndex.Reindex.Helpers.cs"> |
| 60 | <DependentUpon>SqliteFtsIndex.Reindex.cs</DependentUpon> |
| 61 | </Compile> |
| 62 | <Compile Update="SqliteFtsIndex.Reindex.Incremental.cs"> |
| 63 | <DependentUpon>SqliteFtsIndex.Reindex.cs</DependentUpon> |
| 64 | </Compile> |
| 65 | <Compile Update="SqliteFtsIndex.Schema.cs"> |
| 66 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 67 | </Compile> |
| 68 | <Compile Update="SqliteFtsIndex.Status.cs"> |
| 69 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 70 | </Compile> |
| 71 | <Compile Update="SqliteFtsIndex.Vec.cs"> |
| 72 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 73 | </Compile> |
| 74 | <Compile Update="SqliteFtsIndex.VecSearch.cs"> |
| 75 | <DependentUpon>SqliteFtsIndex.cs</DependentUpon> |
| 76 | </Compile> |
| 77 | </ItemGroup> |
| 78 | |
| 79 | <ItemGroup> |
| 80 | <None Include="README.md" Pack="true" PackagePath="\" /> |
| 81 | </ItemGroup> |
| 82 | |
| 83 | </Project> |
| 84 | |