Skip to content

Commit

Permalink
Fix buildtransitive vs buildTransitive difference
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ViktorHofer committed Jan 17, 2023
1 parent afa5665 commit 9018071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/GenerateAnalyzerNuspec/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 9018071

Please sign in to comment.