From a4ac561dafc8b2e81d2fb52a20b7b04a61d2a6ac Mon Sep 17 00:00:00 2001 From: obligaron Date: Wed, 29 Jan 2025 19:32:50 +0100 Subject: [PATCH 1/2] [.NET] Exclude Benchmark and SourceGenerator packages from nuget package generation --- dotnet/Gherkin.Benchmarks/Gherkin.Benchmarks.csproj | 1 + dotnet/Gherkin.SourceGenerator/Gherkin.SourceGenerator.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/dotnet/Gherkin.Benchmarks/Gherkin.Benchmarks.csproj b/dotnet/Gherkin.Benchmarks/Gherkin.Benchmarks.csproj index 5fcb4ce5e..455e0225d 100644 --- a/dotnet/Gherkin.Benchmarks/Gherkin.Benchmarks.csproj +++ b/dotnet/Gherkin.Benchmarks/Gherkin.Benchmarks.csproj @@ -5,6 +5,7 @@ net8.0;net481 enable enable + false diff --git a/dotnet/Gherkin.SourceGenerator/Gherkin.SourceGenerator.csproj b/dotnet/Gherkin.SourceGenerator/Gherkin.SourceGenerator.csproj index c48955763..58bb8d43f 100644 --- a/dotnet/Gherkin.SourceGenerator/Gherkin.SourceGenerator.csproj +++ b/dotnet/Gherkin.SourceGenerator/Gherkin.SourceGenerator.csproj @@ -7,6 +7,7 @@ true true false + false $(GetTargetPathDependsOn);GetDependencyTargetPaths From 9c10e56cff1c00bc5c4cfd5b5f9d400cf4647dea Mon Sep 17 00:00:00 2001 From: obligaron Date: Thu, 30 Jan 2025 19:12:07 +0100 Subject: [PATCH 2/2] Add changelog entry --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3af301752..d757b0975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ## [Unreleased] +### Fixed +- [.NET] Fix NuGet package generation + ## [31.0.0] - 2025-01-29 ### Added - [All] Allow comment inside descriptions ([#334](https://github.com/cucumber/gherkin/pull/334))