-
Notifications
You must be signed in to change notification settings - Fork 17
10.0.0 #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
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
Related to #74
Add usage documentation
…d advanced features Co-authored-by: WeihanLi <7604648+WeihanLi@users.noreply.github.com>
Co-authored-by: WeihanLi <7604648+WeihanLi@users.noreply.github.com>
Co-authored-by: WeihanLi <7604648+WeihanLi@users.noreply.github.com>
Co-authored-by: WeihanLi <7604648+WeihanLi@users.noreply.github.com>
Add comprehensive documentation with usage guides and examples for all features
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 project to support .NET 10.0 and Entity Framework Core 10, modernizes the build and CI/CD pipeline, and significantly improves documentation and onboarding. The most important changes are grouped below:
Platform & Dependency Upgrades
Directory.Build.propstonet10.0, updatedCommonVersionandEFVersionto latest releases, and updated version numbers inbuild/version.props. [1] [2].github/workflows/default.yml,.github/workflows/dotnet-format.yml,.github/workflows/release.yml,azure-pipelines.yml,.devcontainer/devcontainer.json) to use .NET SDK 10.0 instead of 9.0. [1] [2] [3] [4] [5]Build System Modernization
WeihanLi.EntityFramework.slnto new formatWeihanLi.EntityFramework.slnxand updated the build script (build/build.cs) to use the new solution and a streamlined build process viaDotNetPackageBuildProcess. [1] [2] [3]build.ps1andbuild.shfromdotnet tool updatetodotnet tool installfor reliability. [1] [2]Documentation & Onboarding
README.md: added feature highlights, quick start guide, code samples, and improved documentation links for easier onboarding and understanding of project capabilities. [1] [2]Sample Code Improvements
DbContextInterceptorSamples.csfor null safety and initialization, and tweaked the sample program entrypoint for clarity. [1] [2]