-
Notifications
You must be signed in to change notification settings - Fork 0
v1.1.0 #13
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
* TE-1 Added Extension Methods for reading data from JSON * TE-1 Update Readme for v1.0.8-preview * TE-1 Renamed Method CreateStringFromTemplateWithJson * TE-1 Renamed Tests * TE-1 Update AssemblyVersion and FileVersion
* TE-8 Extract interface for TemplateEngine<T> (ITemplateEngine<T>) * TE-13 Implemented wrapper for RazorEngineCore * TE-13 Added UnitTests for RazorTemplateEngine * TE-13 BugFixes and add ToDos * Add NuGet official package source in Workflows
…n; modernisierte Programmlogik auf TopLevelStatements
…trategie für plattformübergreifende Builds
…n und ersetze sie durch dotnet pack und dotnet nuget push
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jupre003 <50733221+jupre003@users.noreply.github.com>
…re (#12) * Add Razor support as an optional extension to TemplateEngine.Core - Introduced MbSoftLab.TemplateEngine.Core.Razor project with RazorTemplateEngine implementation. - Updated project references in existing projects to include the new Razor extension. - Removed Razor dependencies from core classes and adjusted documentation to reflect optional usage. - Enhanced README and other documentation files to guide users on installing and using the Razor extension. * Disable package cache and specify solution file for restore, build, and test steps in CI workflows
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 introduces several improvements focused on modernizing the build and release workflows, updating project configuration to .NET 8, and adding documentation and licensing information. The changes enhance cross-platform compatibility, streamline the NuGet publishing process, and introduce a new Razor extension package.
Build and Release Workflow Modernization:
BuildFromDevelop.ymlandBuildFromMaster.yml. [1] [2]dotnet packanddotnet nuget pushcommands for publishing, replacing the previous third-party NuGet action. This also targets .NET 8 and improves artifact handling.Project Configuration and New Package:
MbSoftLab.TemplateEngine.Core.Razor.csprojfor the Razor extension, targeting .NET 8 and referencingRazorEngineCoreand the core engine. Includes metadata for NuGet packaging.RazorTemplateEngine<T>inRazorTemplateEngine.cs, enabling Razor-based template rendering integrated with the core engine.Documentation and Licensing:
CHANGELOG.md, detailing recent features, technical details, and workflow updates.Test Project Updates: