.Net: Update SK to use MEVD packages and move MEVD projects out of main solution#14117
Merged
westey-m merged 6 commits intoJun 24, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the .NET solution/project structure so SK consumes MEVD (VectorData connector) NuGet packages instead of building MEVD projects as part of the main SK solution, and introduces a dedicated MEVD solution for working on those projects separately.
Changes:
- Switched various SK tests/samples from
src/VectorData/*ProjectReferences toMicrosoft.SemanticKernel.Connectors.*PackageReferences. - Removed VectorData projects/tests from
dotnet/SK-dotnet.slnxand added a newdotnet/MEVD.slnxcontaining those projects. - Added central package versions for
Microsoft.Extensions.VectorData.Abstractionsand theMicrosoft.SemanticKernel.Connectors.*VectorData connector packages.
Reviewed changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| dotnet/src/SemanticKernel.UnitTests/SemanticKernel.UnitTests.csproj | Replaces VectorData InMemory project reference with the InMemory connector package. |
| dotnet/src/SemanticKernel.Abstractions/SemanticKernel.Abstractions.csproj | Replaces local VectorData abstractions project reference with Microsoft.Extensions.VectorData.Abstractions package. |
| dotnet/src/IntegrationTests/IntegrationTests.csproj | Removes VectorData connector project references (requires follow-up for missing InMemory dependency). |
| dotnet/SK-dotnet.slnx | Removes VectorData projects/tests from the main SK solution. |
| dotnet/samples/GettingStartedWithVectorStores/GettingStartedWithVectorStores.csproj | Updates vector store sample to use connector packages instead of VectorData project references. |
| dotnet/samples/GettingStartedWithTextSearch/GettingStartedWithTextSearch.csproj | Updates text search sample to use the InMemory connector package. |
| dotnet/samples/Demos/VectorStoreRAG/VectorStoreRAG.csproj | Updates RAG demo to use connector packages instead of VectorData project references. |
| dotnet/samples/Demos/OnnxSimpleRAG/OnnxSimpleRAG.csproj | Updates ONNX RAG demo to use the InMemory connector package. |
| dotnet/samples/Demos/ModelContextProtocolClientServer/MCPServer/MCPServer.csproj | Updates MCP server demo to use the InMemory connector package. |
| dotnet/samples/Demos/AgentFrameworkWithAspire/ChatWithAgent.ApiService/ChatWithAgent.ApiService.csproj | Adds AzureAISearch connector package (removes VectorData project reference). |
| dotnet/samples/Concepts/Memory/HuggingFace_TextEmbeddingCustomHttpHandler.cs | Updates the sample to use InMemoryCollection instead of SqliteCollection. |
| dotnet/samples/Concepts/Concepts.csproj | Adds connector package references (and explicit SharpCompress/Snappier refs) and removes VectorData project references. |
| dotnet/MEVD.slnx | New dedicated solution containing VectorData projects and their tests. |
| dotnet/Directory.Packages.props | Adds central versions for Microsoft.Extensions.VectorData.Abstractions and Microsoft.SemanticKernel.Connectors.* VectorData connector packages. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
SergeyMenshykh
approved these changes
Jun 24, 2026
rogerbarreto
approved these changes
Jun 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation and Context
Description
Contribution Checklist