This repository was archived by the owner on Aug 16, 2025. It is now read-only.
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
Re-design of the template project to upgrade to latest best-practices and technologies. It follows the work from pleonex/PleOps.Cake#67
Migration steps
There are changes in almost every file of the template repository. The build system while it keeps the same architecture its technologies suffered major structural changes. The easier migration step is to repeat the project setup steps. Otherwise, the changes were:
Build system
.config/dotnet-tools.json.dotnet-cakeDirectory.Build.propsIsPackableandIsPublishableto false.RunConfigurationfromTests.runsettingsIsPackabletotrueIsPublishabletotrueand remove theRuntimeIDentifierandRuntimeIdentifiersnow they are set in the build systemImplicitUsings,Nullableand addDescription.<GenerateDocumentationFile>false</GenerateDocumentationFile>in the test libsbuild/orchestratorbuild.cake. Remove it afterwards.build.csxdotnet-script in your repo rootDocs
CONTRIBUTING.mdto include the developer certificate of origin.gitignorefiles todocs/anddocs/apidocfx.json, several fields have changed:docs/templatefolder with adjustments to the default template.docs/template/public/main.jswith the URL to the GitHub repoCI
.githubfolder.github/workflows).IDEs
prettier.proseWrapVSCode setting as we have it in.prettierrcnow.vscode/settings.json.vscode/tasks.jsonto build using the new build system projectThis closes #29