Skip to content

Commit

Permalink
Rename Microsoft.SemanticKernel.Connectors.MssqlServer to Microsoft.S…
Browse files Browse the repository at this point in the history
…emanticKernel.Connectors.SqlServer.Classic
  • Loading branch information
kbeaugrand committed Jun 5, 2024
1 parent dd9da6c commit 42d40e8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dotnet/SK-dotnet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimePlugin", "samples\Demos
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connectors.Memory.AzureCosmosDBNoSQL", "src\Connectors\Connectors.Memory.AzureCosmosDBNoSQL\Connectors.Memory.AzureCosmosDBNoSQL.csproj", "{B0B3901E-AF56-432B-8FAA-858468E5D0DF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connectors.Memory.MssqlServer", "src\Connectors\Connectors.Memory.MssqlServer\Connectors.Memory.MssqlServer.csproj", "{24104E69-87C6-48A5-A000-1767D43989F8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connectors.Memory.SqlServer.Classic", "src\Connectors\Connectors.Memory.SqlServer.Classic\Connectors.Memory.SqlServer.Classic.csproj", "{24104E69-87C6-48A5-A000-1767D43989F8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<!-- THIS PROPERTY GROUP MUST COME FIRST -->
<AssemblyName>Microsoft.SemanticKernel.Connectors.MssqlServer</AssemblyName>
<AssemblyName>Microsoft.SemanticKernel.Connectors.SqlServer.Classic</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<TargetFramework>netstandard2.0</TargetFramework>
<VersionSuffix>alpha</VersionSuffix>
Expand All @@ -14,8 +14,11 @@

<PropertyGroup>
<!-- NuGet Package Settings -->
<Title>Semantic Kernel - MSSQL Server Connector</Title>
<Description>MSSQL Server connector for Semantic Kernel plugins and semantic memory</Description>
<Title>Semantic Kernel - SQL Server Connectorr</Title>
<Description>
SQL Server connector for Semantic Kernel plugins and semantic memory.
This use classic plain tables to create vector search. If you are using Azure SQL Database, it is recommended to use Microsoft.SemanticKernel.Connectors.SqlServer connector instead.
</Description>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Kevin BEAUGRAND. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

using Microsoft.Data.SqlClient;
using System;
Expand All @@ -10,7 +10,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.SemanticKernel.Connectors.MssqlServer.Core;
namespace Microsoft.SemanticKernel.Connectors.SqlServer.Classic.Core;

/// <summary>
/// Represents a client for interacting with a SQL Server database for storing semantic memories and embeddings.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright (c) Kevin BEAUGRAND. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

using System;

namespace Microsoft.SemanticKernel.Connectors.MssqlServer.Core;
namespace Microsoft.SemanticKernel.Connectors.SqlServer.Classic.Core;

/// <summary>
/// A sql memory entry.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Kevin BEAUGRAND. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

namespace Microsoft.SemanticKernel.Connectors.MssqlServer;
namespace Microsoft.SemanticKernel.Connectors.SqlServer.Classic;

/// <summary>
/// Configuration for the SQL Server memory store.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Kevin BEAUGRAND. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.

using Microsoft.SemanticKernel.Connectors.MssqlServer.Core;
using Microsoft.SemanticKernel.Connectors.SqlServer.Classic.Core;
using Microsoft.SemanticKernel.Memory;
using System;
using System.Collections.Generic;
Expand All @@ -10,7 +10,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace Microsoft.SemanticKernel.Connectors.MssqlServer;
namespace Microsoft.SemanticKernel.Connectors.SqlServer.Classic;

/// <summary>
/// An implementation of <see cref="IMemoryStore"/> backed by a SQL server database.
Expand Down

0 comments on commit 42d40e8

Please sign in to comment.