From 90180719ef9e1cfb4379e15edeba5ec2e29001ea Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Tue, 17 Jan 2023 12:25:02 +0100 Subject: [PATCH] Fix buildtransitive vs buildTransitive difference NuGet expects build files that should be transitively applied to a consuming project to be in a folder called "buildTransitive". https://github.com/dotnet/roslyn-analyzers/commit/afee469c0c862c6af3670d30a4b4e5ff6f8fe45c moved config files into that folder but the change had a typo as it specified "buildtransitive" instead of "buildTransitive". That resulted in a mismatch during pack time. Fixes dependency update in https://github.com/dotnet/sdk/pull/29911 --- src/Tools/GenerateAnalyzerNuspec/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tools/GenerateAnalyzerNuspec/Program.cs b/src/Tools/GenerateAnalyzerNuspec/Program.cs index c2d3235d53..b108daf6fe 100644 --- a/src/Tools/GenerateAnalyzerNuspec/Program.cs +++ b/src/Tools/GenerateAnalyzerNuspec/Program.cs @@ -239,7 +239,7 @@ { if (Path.GetExtension(globalconfig) == ".globalconfig") { - result.AppendLine(FileElement(Path.Combine(globalAnalyzerConfigsDir, globalconfig), $"buildtransitive\\config")); + result.AppendLine(FileElement(Path.Combine(globalAnalyzerConfigsDir, globalconfig), $"buildTransitive\\config")); } else {