Skip to content

Commit 9018071

Browse files
authored
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". afee469 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 dotnet/sdk#29911
1 parent afa5665 commit 9018071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tools/GenerateAnalyzerNuspec/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
{
240240
if (Path.GetExtension(globalconfig) == ".globalconfig")
241241
{
242-
result.AppendLine(FileElement(Path.Combine(globalAnalyzerConfigsDir, globalconfig), $"buildtransitive\\config"));
242+
result.AppendLine(FileElement(Path.Combine(globalAnalyzerConfigsDir, globalconfig), $"buildTransitive\\config"));
243243
}
244244
else
245245
{

0 commit comments

Comments
 (0)