feat(bindings/dotnet): standardize naming to OpenDAL and enforce RC releases#7355
Merged
tisonkun merged 2 commits intoapache:mainfrom Apr 8, 2026
Merged
Conversation
tisonkun
approved these changes
Apr 8, 2026
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.
Which issue does this PR close?
Closes #7354.
Rationale for this change
The .NET binding was previously using inconsistent naming (DotOpenDAL) across the project structure, solution file, and test project.
Additionally, the release workflow used a dotnet-v* tag pattern separate from the main project tags and did not enforce pre-release (RC) versioning, which could lead to accidentally publishing a stable release before the binding is production-ready.
What changes are included in this PR?
Rename DotOpenDAL to OpenDAL: Renamed the project directory, .csproj, solution file (dotnet.slnx → opendal.slnx), test project (DotOpenDAL.Tests → OpenDAL.Tests), and updated all namespace references to use OpenDAL consistently.
Standardize tag pattern: Changed the release workflow trigger from dotnet-v* tags to the unified v* tag pattern used by the rest of the repository.
Enforce RC releases: Added a "Determine package version" step that automatically appends -rc to the package version when a stable version tag is pushed (e.g., v1.0.0 → 1.0.0-rc), ensuring no stable package is published prematurely. Tags that already contain a pre-release suffix (e.g., v1.0.0-beta) are left as-is.
Update workflow paths and descriptions to reflect the new directory structure.
Are there any user-facing changes?
The NuGet package ID remains Apache.OpenDAL, but all published versions will carry an -rc pre-release suffix until the package is confirmed to be stable for production use.
Users installing the package will need to use --prerelease or specify the version explicitly (e.g., --version 1.0.0-rc).
AI Usage Statement
This PR was developed with the assistance of Claude Opus 4.6.