From a05c99cfc383a36ac7357c9c40bfb0b41b5b27ef Mon Sep 17 00:00:00 2001 From: Gerald Versluis Date: Sun, 21 Sep 2025 20:40:23 +0200 Subject: [PATCH] Create bump-dotnet prompt for .NET updates Add prompt for updating documentation to .NET 10 --- .github/prompts/bump-dotnet.prompt.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/prompts/bump-dotnet.prompt.md diff --git a/.github/prompts/bump-dotnet.prompt.md b/.github/prompts/bump-dotnet.prompt.md new file mode 100644 index 000000000..c34fb7ddf --- /dev/null +++ b/.github/prompts/bump-dotnet.prompt.md @@ -0,0 +1,7 @@ +A new major .NET version has been released, .NET 10 and you want to make sure the docs are updated to reflect this. Make sure that any reference to older .NET versions are updated to the latest major version. Examples of things to replace, but not limited to: + +* Target framework mentions in code snippets like: net8.0-ios need to be updated to net10.0-ios +* File paths with the TFM in is, for example: bin\\Release\\net8.0-ios\\ios-arm64\\publish needs to be updated to bin\\Release\\net10.0-ios\\ios-arm64\\publish +* Textual mentions of .NET 8 need to be updated to .NET 10, however, if the text says just .NET without any version number, do not update those + +Also be mindful of documentation where the version number is intentionally set to a certain version, for example when it's being talked about in the context of updating from one version to another.