From ddf42039bc8825aac37c72bea13da7576df47084 Mon Sep 17 00:00:00 2001 From: Tevin Stanley Date: Fri, 5 Dec 2025 13:29:22 -0800 Subject: [PATCH 1/3] updated dotnet version --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index a546169..2338b32 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.305", + "version": "9.0.306", "rollForward": "patch", "allowPrerelease": false }, From ef168c48a96dd5788faab9dc3766197e2afabbe7 Mon Sep 17 00:00:00 2001 From: Tevin Stanley Date: Fri, 5 Dec 2025 13:35:53 -0800 Subject: [PATCH 2/3] Move version.json to repository root for proper versioning --- version.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 version.json diff --git a/version.json b/version.json new file mode 100644 index 0000000..d9bb384 --- /dev/null +++ b/version.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", + "version": "0.10", + "publicReleaseRefSpec": [ + "^refs/heads/main$" // we release out of main + ], + "cloudBuild": { + "buildNumber": { + "enabled": true + } + } +} From 6efde357ab33053974a3efd2c4f68a6ef2b14c4a Mon Sep 17 00:00:00 2001 From: Tevin Stanley Date: Fri, 2 Jan 2026 11:39:13 -0800 Subject: [PATCH 3/3] updated version so there are no build errors --- src/version.json | 12 ------------ version.json | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 src/version.json diff --git a/src/version.json b/src/version.json deleted file mode 100644 index 8170c45..0000000 --- a/src/version.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "0.9", - "publicReleaseRefSpec": [ - "^refs/heads/main$" // we release out of main - ], - "cloudBuild": { - "buildNumber": { - "enabled": true - } - } -} diff --git a/version.json b/version.json index d9bb384..40b4ce2 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "0.10", + "version": "1.0", "publicReleaseRefSpec": [ "^refs/heads/main$" // we release out of main ],