Rename Couchbase.Text.Json to Couchbase.Core #42
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR renames the Couchbase.Text.Json namespace and project to Couchbase.Core in preparation for separating the project into its own repository.
- Updates all namespace declarations from
Couchbase.Text.JsontoCouchbase.Core - Updates using statements across all files to reference the new namespace
- Updates project references and solution file to reflect the name change
Reviewed Changes
Copilot reviewed 45 out of 46 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tests/Couchbase.Analytics.UnitTests/Internal/*.cs | Updated using statements to reference Couchbase.Core.Json |
| tests/Couchbase.Analytics.FunctionalTests/*.cs | Added missing namespace declarations and updated using statements |
| src/Couchbase.Core/*.cs | Updated namespace declarations from Couchbase.Text.Json to Couchbase.Core |
| src/Couchbase.Analytics/*.cs | Updated using statements to reference new Couchbase.Core namespaces |
| fit/Couchbase.Analytics.Performer/*.cs | Updated using statements to reference new Couchbase.Core namespaces |
| Project files | Updated project references and solution file entries |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Comment on lines
+22
to
23
| using System.Globalization; | ||
| using System.Text.Json; |
There was a problem hiding this comment.
[nitpick] Using statements should be ordered alphabetically. System.Globalization should come before System.Text.Json statements.
Suggested change
| using System.Globalization; | |
| using System.Text.Json; | |
| using System.Text.Json; | |
| using System.Globalization; |
mikereiche
approved these changes
Oct 3, 2025
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 PR is a "proposal" to rename the
Couchbase.Text.Jsoninside the repository toCouchbase.Coreto prepare for when we separate the project in its own repository.