From 4f73aba47a51e970410096a34238c27e9514d883 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 23:00:12 +0000 Subject: [PATCH] fix: add release-please version markers to csproj The .csproj Version tag was not managed by release-please because: 1. The file was missing from extra-files in release-please-config.json 2. The Version tag lacked x-release-please-start-version/end markers Without this, the NuGet package would be built with the old version on every release, causing the publish to fail since that version already exists on NuGet. Co-Authored-By: rlamb@launchdarkly.com <4955475+kinyoklion@users.noreply.github.com> --- release-please-config.json | 1 + src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj | 2 ++ 2 files changed, 3 insertions(+) diff --git a/release-please-config.json b/release-please-config.json index 2b29245..d132dcb 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,6 +6,7 @@ "include-v-in-tag": false, "include-component-in-tag": false, "extra-files": [ + "src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj", "PROVENANCE.md" ] } diff --git a/src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj b/src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj index 8efbc08..eb1f82a 100644 --- a/src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj +++ b/src/LaunchDarkly.Logging/LaunchDarkly.Logging.csproj @@ -1,6 +1,8 @@ + 2.0.0 +