diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index f3a13a0..4d3ff40 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -42,7 +42,7 @@ - Return `Task` or `ValueTask` from asynchronous methods. - Use `CancellationToken` parameters to support cancellation. - Avoid async void methods except for event handlers. -- Call `ConfigureAwait(false)` on awaited calls to avoid deadlocks. +- Use `ConfigureAwait(false)` only in library code that may be consumed by apps with a `SynchronizationContext` (e.g., classic ASP.NET, WPF, WinForms); it is generally unnecessary in ASP.NET Core. ### Error Handling diff --git a/SqlDatabaseVectorSearch/SqlDatabaseVectorSearch.csproj b/SqlDatabaseVectorSearch/SqlDatabaseVectorSearch.csproj index 0f84d6b..fc1fe36 100644 --- a/SqlDatabaseVectorSearch/SqlDatabaseVectorSearch.csproj +++ b/SqlDatabaseVectorSearch/SqlDatabaseVectorSearch.csproj @@ -9,27 +9,27 @@ - - + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + - + - - - + + +