From 3baf22f60fadf812da750407536176596c17dacf Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sat, 14 Jun 2025 20:38:59 -0700 Subject: [PATCH 1/2] Remove adding labels to auto PR --- .github/workflows/update-languagedata.yml | 1 - .vscode/launch.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/update-languagedata.yml b/.github/workflows/update-languagedata.yml index 84d59d7..8057ffc 100644 --- a/.github/workflows/update-languagedata.yml +++ b/.github/workflows/update-languagedata.yml @@ -49,4 +49,3 @@ jobs: body: 'This PR updates the language data files and regenerates the code.' commit-message: 'Update language data and generated files' delete-branch: true - labels: 'update-languagedata' diff --git a/.vscode/launch.json b/.vscode/launch.json index eb9e1b4..7f2b371 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "name": "LanguageTagsCreate", "type": "coreclr", "request": "launch", - "preLaunchTask": ".NET Build", + "preLaunchTask": ".Net Build", "program": "${workspaceFolder}/LanguageTagsCreate/bin/Debug/net9.0/LanguageTagsCreate.dll", "args": [ "${workspaceFolder}", From b0782ec141d56bb799322487778925b313ced7be Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sat, 14 Jun 2025 20:48:22 -0700 Subject: [PATCH 2/2] Always write JSON using CRLF --- LanguageTags/JsonOptions.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LanguageTags/JsonOptions.cs b/LanguageTags/JsonOptions.cs index 1d468e5..a3971b9 100644 --- a/LanguageTags/JsonOptions.cs +++ b/LanguageTags/JsonOptions.cs @@ -19,5 +19,6 @@ internal sealed class JsonOptions DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, IncludeFields = true, WriteIndented = true, + NewLine = "\r\n", }; }