Skip to content

Commit e514120

Browse files
authored
.Net: Reorganize MEVD projects (#12332)
~**Based on top of #12325 - review last commit only**~ This is a reorganization-only change, no code changes whatsoever. * Move MEVD test projects into a test directory (outside src) to align with standard .NET project layout, and to allow common settings for test projects (e.g. via Directory.Build.props). * Move MEVD projects and tests into their own VectorData directories, separating MEVD providers from other SK connectors. * Align solution layout with the filesystem layout. * Remove Memory from project paths. * Remove obsolete Connectors.UnitTests.
1 parent 2634f4b commit e514120

File tree

673 files changed

+1142
-1152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

673 files changed

+1142
-1152
lines changed

dotnet/MEVD.slnf

Lines changed: 39 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,48 @@
33
"path": "SK-dotnet.slnx",
44
"projects":
55
[
6-
"src/Connectors/Connectors.Memory.AzureAISearch/Connectors.Memory.AzureAISearch.csproj",
7-
"src/Connectors/Connectors.Memory.CosmosMongoDB/Connectors.Memory.CosmosMongoDB.csproj",
8-
"src/Connectors/Connectors.Memory.CosmosNoSql/Connectors.Memory.CosmosNoSql.csproj",
9-
"src/Connectors/Connectors.Memory.Chroma/Connectors.Memory.Chroma.csproj",
10-
"src/Connectors/Connectors.Memory.DuckDB/Connectors.Memory.DuckDB.csproj",
11-
"src/Connectors/Connectors.Memory.InMemory/Connectors.Memory.InMemory.csproj",
12-
"src/Connectors/Connectors.Memory.Kusto/Connectors.Memory.Kusto.csproj",
13-
"src/Connectors/Connectors.Memory.Milvus/Connectors.Memory.Milvus.csproj",
14-
"src/Connectors/Connectors.Memory.MongoDB/Connectors.Memory.MongoDB.csproj",
15-
"src/Connectors/Connectors.Memory.Pinecone/Connectors.Memory.Pinecone.csproj",
16-
"src/Connectors/Connectors.Memory.PgVector/Connectors.Memory.PgVector.csproj",
17-
"src/Connectors/Connectors.Memory.Qdrant/Connectors.Memory.Qdrant.csproj",
18-
"src/Connectors/Connectors.Memory.Redis/Connectors.Memory.Redis.csproj",
19-
"src/Connectors/Connectors.Memory.SqliteVec/Connectors.Memory.SqliteVec.csproj",
20-
"src/Connectors/Connectors.Memory.SqlServer/Connectors.Memory.SqlServer.csproj",
21-
"src/Connectors/Connectors.Memory.Weaviate/Connectors.Memory.Weaviate.csproj",
6+
"src/VectorData/AzureAISearch/AzureAISearch.csproj",
7+
"src/VectorData/CosmosMongoDB/CosmosMongoDB.csproj",
8+
"src/VectorData/CosmosNoSql/CosmosNoSql.csproj",
9+
"src/VectorData/Chroma/Chroma.csproj",
10+
"src/VectorData/InMemory/InMemory.csproj",
11+
"src/VectorData/Milvus/Milvus.csproj",
12+
"src/VectorData/MongoDB/MongoDB.csproj",
13+
"src/VectorData/Pinecone/Pinecone.csproj",
14+
"src/VectorData/PgVector/PgVector.csproj",
15+
"src/VectorData/Qdrant/Qdrant.csproj",
16+
"src/VectorData/Redis/Redis.csproj",
17+
"src/VectorData/SqliteVec/SqliteVec.csproj",
18+
"src/VectorData/SqlServer/SqlServer.csproj",
19+
"src/VectorData/Weaviate/Weaviate.csproj",
2220

23-
"src/Connectors/Connectors.AzureAISearch.UnitTests/Connectors.AzureAISearch.UnitTests.csproj",
24-
"src/Connectors/Connectors.CosmosMongoDB.UnitTests/Connectors.CosmosMongoDB.UnitTests.csproj",
25-
"src/Connectors/Connectors.CosmosNoSql.UnitTests/Connectors.CosmosNoSql.UnitTests.csproj",
26-
"src/Connectors/Connectors.InMemory.UnitTests/Connectors.InMemory.UnitTests.csproj",
27-
"src/Connectors/Connectors.MongoDB.UnitTests/Connectors.MongoDB.UnitTests.csproj",
28-
"src/Connectors/Connectors.Pinecone.UnitTests/Connectors.Pinecone.UnitTests.csproj",
29-
"src/Connectors/Connectors.PgVector.UnitTests/Connectors.PgVector.UnitTests.csproj",
30-
"src/Connectors/Connectors.Qdrant.UnitTests/Connectors.Qdrant.UnitTests.csproj",
31-
"src/Connectors/Connectors.Redis.UnitTests/Connectors.Redis.UnitTests.csproj",
32-
"src/Connectors/Connectors.SqliteVec.UnitTests/Connectors.SqliteVec.UnitTests.csproj",
33-
"src/Connectors/Connectors.Weaviate.UnitTests/Connectors.Weaviate.UnitTests.csproj",
21+
"src/VectorData/VectorData.Abstractions/VectorData.Abstractions.csproj",
3422

35-
"src/VectorDataIntegrationTests/AzureAISearchIntegrationTests/AzureAISearchIntegrationTests.csproj",
36-
"src/VectorDataIntegrationTests/CosmosMongoDBIntegrationTests/CosmosMongoDBIntegrationTests.csproj",
37-
"src/VectorDataIntegrationTests/CosmosNoSqlIntegrationTests/CosmosNoSqlIntegrationTests.csproj",
38-
"src/VectorDataIntegrationTests/InMemoryIntegrationTests/InMemoryIntegrationTests.csproj",
39-
"src/VectorDataIntegrationTests/MongoDBIntegrationTests/MongoDBIntegrationTests.csproj",
40-
"src/VectorDataIntegrationTests/PineconeIntegrationTests/PineconeIntegrationTests.csproj",
41-
"src/VectorDataIntegrationTests/PgVectorIntegrationTests/PgVectorIntegrationTests.csproj",
42-
"src/VectorDataIntegrationTests/QdrantIntegrationTests/QdrantIntegrationTests.csproj",
43-
"src/VectorDataIntegrationTests/RedisIntegrationTests/RedisIntegrationTests.csproj",
44-
"src/VectorDataIntegrationTests/SqliteVecIntegrationTests/SqliteVecIntegrationTests.csproj",
45-
"src/VectorDataIntegrationTests/SqlServerIntegrationTests/SqlServerIntegrationTests.csproj",
46-
"src/VectorDataIntegrationTests/WeaviateIntegrationTests/WeaviateIntegrationTests.csproj",
23+
"test/VectorData/AzureAISearch.UnitTests/AzureAISearch.UnitTests.csproj",
24+
"test/VectorData/AzureAISearch.ConformanceTests/AzureAISearch.ConformanceTests.csproj",
25+
"test/VectorData/CosmosMongoDB.UnitTests/CosmosMongoDB.UnitTests.csproj",
26+
"test/VectorData/CosmosMongoDB.ConformanceTests/CosmosMongoDB.ConformanceTests.csproj",
27+
"test/VectorData/CosmosNoSql.UnitTests/CosmosNoSql.UnitTests.csproj",
28+
"test/VectorData/CosmosNoSql.ConformanceTests/CosmosNoSql.ConformanceTests.csproj",
29+
"test/VectorData/InMemory.UnitTests/InMemory.UnitTests.csproj",
30+
"test/VectorData/InMemory.ConformanceTests/InMemory.ConformanceTests.csproj",
31+
"test/VectorData/MongoDB.UnitTests/MongoDB.UnitTests.csproj",
32+
"test/VectorData/MongoDB.ConformanceTests/MongoDB.ConformanceTests.csproj",
33+
"test/VectorData/Pinecone.UnitTests/Pinecone.UnitTests.csproj",
34+
"test/VectorData/Pinecone.ConformanceTests/Pinecone.ConformanceTests.csproj",
35+
"test/VectorData/PgVector.UnitTests/PgVector.UnitTests.csproj",
36+
"test/VectorData/PgVector.ConformanceTests/PgVector.ConformanceTests.csproj",
37+
"test/VectorData/Qdrant.UnitTests/Qdrant.UnitTests.csproj",
38+
"test/VectorData/Qdrant.ConformanceTests/Qdrant.ConformanceTests.csproj",
39+
"test/VectorData/Redis.UnitTests/Redis.UnitTests.csproj",
40+
"test/VectorData/Redis.ConformanceTests/Redis.ConformanceTests.csproj",
41+
"test/VectorData/SqliteVec.UnitTests/SqliteVec.UnitTests.csproj",
42+
"test/VectorData/SqliteVec.ConformanceTests/SqliteVec.ConformanceTests.csproj",
43+
"test/VectorData/SqlServer.ConformanceTests/SqlServer.ConformanceTests.csproj",
44+
"test/VectorData/Weaviate.UnitTests/Weaviate.UnitTests.csproj",
45+
"test/VectorData/Weaviate.ConformanceTests/Weaviate.ConformanceTests.csproj",
4746

48-
"src/VectorDataIntegrationTests/VectorDataIntegrationTests/VectorDataIntegrationTests.csproj"
47+
"test/VectorData/VectorData.ConformanceTests/VectorData.ConformanceTests.csproj"
4948
]
5049
}
5150
}

dotnet/SK-dotnet.slnx

Lines changed: 43 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -125,37 +125,22 @@
125125
<Project Path="src/Connectors/Connectors.OpenAI.UnitTests/Connectors.OpenAI.UnitTests.csproj" />
126126
<Project Path="src/Connectors/Connectors.OpenAI/Connectors.OpenAI.csproj" />
127127
</Folder>
128-
<Folder Name="/src/connectors/Memory/">
129-
<Project Path="src/Connectors/Connectors.Memory.AzureAISearch/Connectors.Memory.AzureAISearch.csproj" />
130-
<Project Path="src/Connectors/Connectors.Memory.Chroma/Connectors.Memory.Chroma.csproj" />
131-
<Project Path="src/Connectors/Connectors.Memory.CosmosMongoDB/Connectors.Memory.CosmosMongoDB.csproj" />
132-
<Project Path="src/Connectors/Connectors.Memory.CosmosNoSql/Connectors.Memory.CosmosNoSql.csproj" />
133-
<Project Path="src/Connectors/Connectors.Memory.InMemory/Connectors.Memory.InMemory.csproj" />
134-
<Project Path="src/Connectors/Connectors.Memory.Milvus/Connectors.Memory.Milvus.csproj" />
135-
<Project Path="src/Connectors/Connectors.Memory.MongoDB/Connectors.Memory.MongoDB.csproj" />
136-
<Project Path="src/Connectors/Connectors.Memory.PgVector/Connectors.Memory.PgVector.csproj" />
137-
<Project Path="src/Connectors/Connectors.Memory.Pinecone/Connectors.Memory.Pinecone.csproj" />
138-
<Project Path="src/Connectors/Connectors.Memory.Qdrant/Connectors.Memory.Qdrant.csproj" />
139-
<Project Path="src/Connectors/Connectors.Memory.Redis/Connectors.Memory.Redis.csproj" />
140-
<Project Path="src/Connectors/Connectors.Memory.SqliteVec/Connectors.Memory.SqliteVec.csproj" />
141-
<Project Path="src/Connectors/Connectors.Memory.SqlServer/Connectors.Memory.SqlServer.csproj" />
142-
<Project Path="src/Connectors/Connectors.Memory.Weaviate/Connectors.Memory.Weaviate.csproj" />
143-
<Project Path="src/Connectors/VectorData.Abstractions/VectorData.Abstractions.csproj" />
144-
</Folder>
145-
<Folder Name="/src/connectors/MemoryUnitTests/">
146-
<Project Path="src/Connectors/Connectors.AzureAISearch.UnitTests/Connectors.AzureAISearch.UnitTests.csproj" />
147-
<Project Path="src/Connectors/Connectors.CosmosMongoDB.UnitTests/Connectors.CosmosMongoDB.UnitTests.csproj" />
148-
<Project Path="src/Connectors/Connectors.CosmosNoSql.UnitTests/Connectors.CosmosNoSql.UnitTests.csproj" />
149-
<Project Path="src/Connectors/Connectors.InMemory.UnitTests/Connectors.InMemory.UnitTests.csproj" />
150-
<Project Path="src/Connectors/Connectors.MongoDB.UnitTests/Connectors.MongoDB.UnitTests.csproj" />
151-
<Project Path="src/Connectors/Connectors.PgVector.UnitTests/Connectors.PgVector.UnitTests.csproj" />
152-
<Project Path="src/Connectors/Connectors.Pinecone.UnitTests/Connectors.Pinecone.UnitTests.csproj" />
153-
<Project Path="src/Connectors/Connectors.Qdrant.UnitTests/Connectors.Qdrant.UnitTests.csproj" />
154-
<Project Path="src/Connectors/Connectors.Redis.UnitTests/Connectors.Redis.UnitTests.csproj" />
155-
<Project Path="src/Connectors/Connectors.SqliteVec.UnitTests/Connectors.SqliteVec.UnitTests.csproj" />
156-
<Project Path="src/Connectors/Connectors.UnitTests/Connectors.UnitTests.csproj" />
157-
<Project Path="src/Connectors/Connectors.Weaviate.UnitTests/Connectors.Weaviate.UnitTests.csproj" />
158-
<Project Path="src/Connectors/VectorData.UnitTests/VectorData.UnitTests.csproj" />
128+
<Folder Name="/src/VectorData/">
129+
<Project Path="src/VectorData/AzureAISearch/AzureAISearch.csproj" />
130+
<Project Path="src/VectorData/Chroma/Chroma.csproj" />
131+
<Project Path="src/VectorData/CosmosMongoDB/CosmosMongoDB.csproj" />
132+
<Project Path="src/VectorData/CosmosNoSql/CosmosNoSql.csproj" />
133+
<Project Path="src/VectorData/InMemory/InMemory.csproj" />
134+
<Project Path="src/VectorData/Milvus/Milvus.csproj" />
135+
<Project Path="src/VectorData/MongoDB/MongoDB.csproj" />
136+
<Project Path="src/VectorData/PgVector/PgVector.csproj" />
137+
<Project Path="src/VectorData/Pinecone/Pinecone.csproj" />
138+
<Project Path="src/VectorData/Qdrant/Qdrant.csproj" />
139+
<Project Path="src/VectorData/Redis/Redis.csproj" />
140+
<Project Path="src/VectorData/SqliteVec/SqliteVec.csproj" />
141+
<Project Path="src/VectorData/SqlServer/SqlServer.csproj" />
142+
<Project Path="src/VectorData/Weaviate/Weaviate.csproj" />
143+
<Project Path="src/VectorData/VectorData.Abstractions/VectorData.Abstractions.csproj" />
159144
</Folder>
160145
<Folder Name="/src/experimental/">
161146
<Project Path="src/Experimental/Orchestration.Flow.IntegrationTests/Experimental.Orchestration.Flow.IntegrationTests.csproj" />
@@ -315,19 +300,32 @@
315300
<Project Path="src/Plugins/Plugins.UnitTests/Plugins.UnitTests.csproj" />
316301
<Project Path="src/Plugins/Plugins.Web/Plugins.Web.csproj" />
317302
</Folder>
318-
<Folder Name="/src/VectorDataIntegrationTests/">
319-
<Project Path="src/VectorDataIntegrationTests/AzureAISearchIntegrationTests/AzureAISearchIntegrationTests.csproj" />
320-
<Project Path="src/VectorDataIntegrationTests/CosmosMongoDBIntegrationTests/CosmosMongoDBIntegrationTests.csproj" />
321-
<Project Path="src/VectorDataIntegrationTests/CosmosNoSqlIntegrationTests/CosmosNoSqlIntegrationTests.csproj" />
322-
<Project Path="src/VectorDataIntegrationTests/InMemoryIntegrationTests/InMemoryIntegrationTests.csproj" />
323-
<Project Path="src/VectorDataIntegrationTests/MongoDBIntegrationTests/MongoDBIntegrationTests.csproj" />
324-
<Project Path="src/VectorDataIntegrationTests/PgVectorIntegrationTests/PgVectorIntegrationTests.csproj" />
325-
<Project Path="src/VectorDataIntegrationTests/PineconeIntegrationTests/PineconeIntegrationTests.csproj" />
326-
<Project Path="src/VectorDataIntegrationTests/QdrantIntegrationTests/QdrantIntegrationTests.csproj" />
327-
<Project Path="src/VectorDataIntegrationTests/RedisIntegrationTests/RedisIntegrationTests.csproj" />
328-
<Project Path="src/VectorDataIntegrationTests/SqliteVecIntegrationTests/SqliteVecIntegrationTests.csproj" />
329-
<Project Path="src/VectorDataIntegrationTests/SqlServerIntegrationTests/SqlServerIntegrationTests.csproj" />
330-
<Project Path="src/VectorDataIntegrationTests/VectorDataIntegrationTests/VectorDataIntegrationTests.csproj" />
331-
<Project Path="src/VectorDataIntegrationTests/WeaviateIntegrationTests/WeaviateIntegrationTests.csproj" />
303+
<Folder Name="/test/VectorData/">
304+
<Project Path="test/VectorData/AzureAISearch.UnitTests/AzureAISearch.UnitTests.csproj" />
305+
<Project Path="test/VectorData/AzureAISearch.ConformanceTests/AzureAISearch.ConformanceTests.csproj" />
306+
<Project Path="test/VectorData/Chroma.UnitTests/Chroma.UnitTests.csproj" />
307+
<Project Path="test/VectorData/CosmosMongoDB.UnitTests/CosmosMongoDB.UnitTests.csproj" />
308+
<Project Path="test/VectorData/CosmosMongoDB.ConformanceTests/CosmosMongoDB.ConformanceTests.csproj" />
309+
<Project Path="test/VectorData/CosmosNoSql.UnitTests/CosmosNoSql.UnitTests.csproj" />
310+
<Project Path="test/VectorData/CosmosNoSql.ConformanceTests/CosmosNoSql.ConformanceTests.csproj" />
311+
<Project Path="test/VectorData/InMemory.UnitTests/InMemory.UnitTests.csproj" />
312+
<Project Path="test/VectorData/InMemory.ConformanceTests/InMemory.ConformanceTests.csproj" />
313+
<Project Path="test/VectorData/MongoDB.UnitTests/MongoDB.UnitTests.csproj" />
314+
<Project Path="test/VectorData/MongoDB.ConformanceTests/MongoDB.ConformanceTests.csproj" />
315+
<Project Path="test/VectorData/PgVector.UnitTests/PgVector.UnitTests.csproj" />
316+
<Project Path="test/VectorData/PgVector.ConformanceTests/PgVector.ConformanceTests.csproj" />
317+
<Project Path="test/VectorData/Pinecone.UnitTests/Pinecone.UnitTests.csproj" />
318+
<Project Path="test/VectorData/Pinecone.ConformanceTests/Pinecone.ConformanceTests.csproj" />
319+
<Project Path="test/VectorData/Qdrant.UnitTests/Qdrant.UnitTests.csproj" />
320+
<Project Path="test/VectorData/Qdrant.ConformanceTests/Qdrant.ConformanceTests.csproj" />
321+
<Project Path="test/VectorData/Redis.UnitTests/Redis.UnitTests.csproj" />
322+
<Project Path="test/VectorData/Redis.ConformanceTests/Redis.ConformanceTests.csproj" />
323+
<Project Path="test/VectorData/SqliteVec.UnitTests/SqliteVec.UnitTests.csproj" />
324+
<Project Path="test/VectorData/SqliteVec.ConformanceTests/SqliteVec.ConformanceTests.csproj" />
325+
<Project Path="test/VectorData/SqlServer.ConformanceTests/SqlServer.ConformanceTests.csproj" />
326+
<Project Path="test/VectorData/Weaviate.UnitTests/Weaviate.UnitTests.csproj" />
327+
<Project Path="test/VectorData/Weaviate.ConformanceTests/Weaviate.ConformanceTests.csproj" />
328+
<Project Path="test/VectorData/VectorData.UnitTests/VectorData.UnitTests.csproj" />
329+
<Project Path="test/VectorData/VectorData.ConformanceTests/VectorData.ConformanceTests.csproj" />
332330
</Folder>
333331
</Solution>

dotnet/samples/Concepts/Concepts.csproj

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,31 +56,31 @@
5656
<Import Project="$(RepoRoot)/dotnet/src/InternalUtilities/samples/SamplesInternalUtilities.props" />
5757

5858
<ItemGroup>
59-
<ProjectReference Include="..\..\src\Connectors\Connectors.Amazon\Connectors.Amazon.csproj" />
60-
<ProjectReference Include="..\..\src\Connectors\Connectors.AzureAIInference\Connectors.AzureAIInference.csproj" />
61-
<ProjectReference Include="..\..\src\Connectors\Connectors.AzureOpenAI\Connectors.AzureOpenAI.csproj" />
62-
<ProjectReference Include="..\..\src\Connectors\Connectors.MistralAI\Connectors.MistralAI.csproj" />
6359
<ProjectReference Include="..\..\src\Agents\Abstractions\Agents.Abstractions.csproj" />
6460
<ProjectReference Include="..\..\src\Agents\AzureAI\Agents.AzureAI.csproj" />
6561
<ProjectReference Include="..\..\src\Agents\Core\Agents.Core.csproj" />
6662
<ProjectReference Include="..\..\src\Agents\OpenAI\Agents.OpenAI.csproj" />
6763
<ProjectReference Include="..\..\src\Agents\Bedrock\Agents.Bedrock.csproj" />
64+
<ProjectReference Include="..\..\src\Connectors\Connectors.Amazon\Connectors.Amazon.csproj" />
65+
<ProjectReference Include="..\..\src\Connectors\Connectors.AzureAIInference\Connectors.AzureAIInference.csproj" />
66+
<ProjectReference Include="..\..\src\Connectors\Connectors.AzureOpenAI\Connectors.AzureOpenAI.csproj" />
6867
<ProjectReference Include="..\..\src\Connectors\Connectors.Google\Connectors.Google.csproj" />
6968
<ProjectReference Include="..\..\src\Connectors\Connectors.HuggingFace\Connectors.HuggingFace.csproj" />
70-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.AzureAISearch\Connectors.Memory.AzureAISearch.csproj" />
71-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.CosmosMongoDB\Connectors.Memory.CosmosMongoDB.csproj" />
72-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.Chroma\Connectors.Memory.Chroma.csproj" />
73-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.InMemory\Connectors.Memory.InMemory.csproj" />
74-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.MongoDB\Connectors.Memory.MongoDB.csproj" />
75-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.Pinecone\Connectors.Memory.Pinecone.csproj" />
76-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.PgVector\Connectors.Memory.PgVector.csproj" />
77-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.Qdrant\Connectors.Memory.Qdrant.csproj" />
78-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.Redis\Connectors.Memory.Redis.csproj" />
79-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.SqliteVec\Connectors.Memory.SqliteVec.csproj" />
80-
<ProjectReference Include="..\..\src\Connectors\Connectors.Memory.Weaviate\Connectors.Memory.Weaviate.csproj" />
69+
<ProjectReference Include="..\..\src\Connectors\Connectors.MistralAI\Connectors.MistralAI.csproj" />
8170
<ProjectReference Include="..\..\src\Connectors\Connectors.Onnx\Connectors.Onnx.csproj" />
8271
<ProjectReference Include="..\..\src\Connectors\Connectors.Ollama\Connectors.Ollama.csproj" />
8372
<ProjectReference Include="..\..\src\Connectors\Connectors.OpenAI\Connectors.OpenAI.csproj" />
73+
<ProjectReference Include="..\..\src\VectorData\AzureAISearch\AzureAISearch.csproj" />
74+
<ProjectReference Include="..\..\src\VectorData\CosmosMongoDB\CosmosMongoDB.csproj" />
75+
<ProjectReference Include="..\..\src\VectorData\Chroma\Chroma.csproj" />
76+
<ProjectReference Include="..\..\src\VectorData\InMemory\InMemory.csproj" />
77+
<ProjectReference Include="..\..\src\VectorData\MongoDB\MongoDB.csproj" />
78+
<ProjectReference Include="..\..\src\VectorData\Pinecone\Pinecone.csproj" />
79+
<ProjectReference Include="..\..\src\VectorData\PgVector\PgVector.csproj" />
80+
<ProjectReference Include="..\..\src\VectorData\Qdrant\Qdrant.csproj" />
81+
<ProjectReference Include="..\..\src\VectorData\Redis\Redis.csproj" />
82+
<ProjectReference Include="..\..\src\VectorData\SqliteVec\SqliteVec.csproj" />
83+
<ProjectReference Include="..\..\src\VectorData\Weaviate\Weaviate.csproj" />
8484
<ProjectReference Include="..\..\src\Experimental\Orchestration.Flow\Experimental.Orchestration.Flow.csproj" />
8585
<ProjectReference Include="..\..\src\Extensions\PromptTemplates.Handlebars\PromptTemplates.Handlebars.csproj" />
8686
<ProjectReference Include="..\..\src\Extensions\PromptTemplates.Liquid\PromptTemplates.Liquid.csproj" />

0 commit comments

Comments
 (0)