Default Feature ModuleInfo implementations and update documentation and dependencies#19
Merged
Conversation
FeatureModule and WebFeatureModule now set ModuleInfo to a default FeatureModuleInfo using the class name and version "1.0.0" in their constructors. ModuleInfo is changed from abstract to virtual, allowing overrides while supplying a sensible default.
Add commit message guidelines to documentation. Rename module in FeatureModule.cs and remove redundant ModuleInfo from WeatherModule.cs.
Updated all Microsoft, Azure, and related NuGet dependencies to latest patch versions. Bumped package versions for core Infinity.Toolkit libraries. Set VersionPrefix to 1.0.0 for stable packages. Improved FeatureModules description. Centralized README.md packaging logic in Directory.Build.props and removed redundant entries from individual projects. Updated Microsoft.NET.Test.Sdk to 18.5.1.
Extended copyright years in LICENSE. Added comprehensive Infinity.Toolkit.Messaging documentation to README, including overview, features, quick start guide, contributing, and license sections.
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 includes several updates across the repository, focusing on dependency upgrades, improvements to the feature modules infrastructure, packaging consistency, and documentation enhancements. The main themes are: updating package versions to the latest compatible releases, simplifying and improving the base classes for feature modules, and standardizing packaging and documentation practices.
Dependency and Package Upgrades:
Microsoft.AspNetCore.OpenApi,Microsoft.Extensions.DependencyInjection,Microsoft.EntityFrameworkCore,Azure.Identity,Microsoft.FeatureManagement, and others. This ensures compatibility, security, and access to the latest features and bug fixes. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16]Feature Modules Infrastructure Improvements:
FeatureModuleandWebFeatureModulebase classes to provide defaultModuleInfoimplementations using the class name and a default version, reducing boilerplate for consumers. TheModuleInfoproperty is now virtual, allowing for easier customization.ModuleInfo, simplifying or customizing module info as needed. [1] [2]Packaging and Project Structure:
README.mdin NuGet packages by moving its configuration toDirectory.Build.propsfor all relevant projects, and removed redundant or duplicateREADME.mdincludes from individual.csprojfiles. [1] [2] [3] [4] [5] [6] [7] [8]Documentation and Community Standards:
Infinity.Toolkit.FeatureModulesto better explain its benefits and usage.