diff --git a/README.md b/README.md index 328ac97..f66ff52 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ All commands, parameters and examples are documented here: [docs/CLI.md](docs/CL - Make the API server (and indexer, once it is done) a docker container - Implement dynamic invocation based database migrations - Remove remaining DRY violations using the SQLHelper +- Update server setup in README.md to reflect the removal of the CLI # Future features - Support for other database types (MSSQL, SQLite) diff --git a/embeddingsearch.sln b/embeddingsearch.sln deleted file mode 100644 index d214497..0000000 --- a/embeddingsearch.sln +++ /dev/null @@ -1,41 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.31903.59 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{6AA0A9E0-A361-4E86-BA02-D5F6779C6DEF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "src\Server\Server.csproj", "{643CB1D1-02F6-4BCC-A1CC-6E403D78C442}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "src\Client\Client.csproj", "{A8EBB748-5BBA-47EB-840D-E398365C52A2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Indexer", "src\Indexer\Indexer.csproj", "{5361FD10-E85C-496C-9BEF-9232F767F904}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {643CB1D1-02F6-4BCC-A1CC-6E403D78C442}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {643CB1D1-02F6-4BCC-A1CC-6E403D78C442}.Debug|Any CPU.Build.0 = Debug|Any CPU - {643CB1D1-02F6-4BCC-A1CC-6E403D78C442}.Release|Any CPU.ActiveCfg = Release|Any CPU - {643CB1D1-02F6-4BCC-A1CC-6E403D78C442}.Release|Any CPU.Build.0 = Release|Any CPU - {A8EBB748-5BBA-47EB-840D-E398365C52A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A8EBB748-5BBA-47EB-840D-E398365C52A2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A8EBB748-5BBA-47EB-840D-E398365C52A2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A8EBB748-5BBA-47EB-840D-E398365C52A2}.Release|Any CPU.Build.0 = Release|Any CPU - {5361FD10-E85C-496C-9BEF-9232F767F904}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5361FD10-E85C-496C-9BEF-9232F767F904}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5361FD10-E85C-496C-9BEF-9232F767F904}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5361FD10-E85C-496C-9BEF-9232F767F904}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {643CB1D1-02F6-4BCC-A1CC-6E403D78C442} = {6AA0A9E0-A361-4E86-BA02-D5F6779C6DEF} - {A8EBB748-5BBA-47EB-840D-E398365C52A2} = {6AA0A9E0-A361-4E86-BA02-D5F6779C6DEF} - {5361FD10-E85C-496C-9BEF-9232F767F904} = {6AA0A9E0-A361-4E86-BA02-D5F6779C6DEF} - EndGlobalSection -EndGlobal diff --git a/src/embeddingsearch.sln b/src/embeddingsearch.sln new file mode 100644 index 0000000..ed571b7 --- /dev/null +++ b/src/embeddingsearch.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{AE175713-04A7-4A41-9572-B96262FBA484}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Indexer", "Indexer\Indexer.csproj", "{1CFFC493-C0D1-4142-82AB-28A0AC1FBB70}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{4232CA30-ABC0-4EB9-A796-5E217719DD88}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AE175713-04A7-4A41-9572-B96262FBA484}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AE175713-04A7-4A41-9572-B96262FBA484}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AE175713-04A7-4A41-9572-B96262FBA484}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AE175713-04A7-4A41-9572-B96262FBA484}.Release|Any CPU.Build.0 = Release|Any CPU + {1CFFC493-C0D1-4142-82AB-28A0AC1FBB70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1CFFC493-C0D1-4142-82AB-28A0AC1FBB70}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1CFFC493-C0D1-4142-82AB-28A0AC1FBB70}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1CFFC493-C0D1-4142-82AB-28A0AC1FBB70}.Release|Any CPU.Build.0 = Release|Any CPU + {4232CA30-ABC0-4EB9-A796-5E217719DD88}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4232CA30-ABC0-4EB9-A796-5E217719DD88}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4232CA30-ABC0-4EB9-A796-5E217719DD88}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4232CA30-ABC0-4EB9-A796-5E217719DD88}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal