Update .editorconfig, VectorSearchService, and .csproj

- Updated .editorconfig with new C# style preferences.
- Modified using directives in VectorSearchService.cs.
- Changed tuple element order in VectorSearchService.cs foreach loop.
- Updated SqlDatabaseVectorSearch.csproj to target .NET 9.0.
- Updated package references and removed TinyHelpers package.

Update .editorconfig, fix VectorSearchService, upgrade packages

Updated .editorconfig with new C# style preferences. Removed `TinyHelpers.Extensions` using directive and corrected variable order in `VectorSearchService.cs`. Upgraded target framework to `net9.0` and updated several package references in `SqlDatabaseVectorSearch.csproj`.
This commit is contained in:
Marco Minerva
2024-11-21 17:57:10 +01:00
parent bcd085e49d
commit 9a7ea2f5b0
3 changed files with 10 additions and 11 deletions
+1
View File
@@ -131,6 +131,7 @@ csharp_prefer_braces = true:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = file_scoped:suggestion
csharp_style_prefer_method_group_conversion = true:silent
csharp_prefer_system_threading_lock = true:suggestion
# Expression-level preferences
csharp_prefer_simple_default_expression = true:suggestion