fix: bump Microsoft.Data.SqlClient to 6.0.5 in PluginDatabaseSample#180
Open
alafleur-genetec wants to merge 1 commit into
Open
fix: bump Microsoft.Data.SqlClient to 6.0.5 in PluginDatabaseSample#180alafleur-genetec wants to merge 1 commit into
alafleur-genetec wants to merge 1 commit into
Conversation
Genetec.Sdk.Plugin 5.14 was built against Microsoft.Data.SqlClient assembly version 6.0.0.0, but PluginDatabaseSample referenced 5.2.2. Result: CS1705 build error. Bumping the package reference to 6.0.5 (latest 6.0.x patch, same assembly major as the SDK requires). Verified locally: dotnet build now produces zero CS errors for this project. The sample's code uses standard SqlConnection/SqlCommand/ SqlParameter APIs that are stable between 5.x and 6.x; no source changes needed.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the SQL Server client dependency used by the PluginDatabaseSample project.
Changes:
- Bumped
Microsoft.Data.SqlClientfrom5.2.2to6.0.5.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
This pull request updates the
Microsoft.Data.SqlClientpackage in thePluginDatabaseSampleproject to a newer version.Dependency update:
Microsoft.Data.SqlClientNuGet package from version 5.2.2 to 6.0.5 inPluginDatabaseSample.csprojto ensure compatibility with the latest features and security fixes.