Skip to content

Commit d1ab5ca

Browse files
committed
Fix typo in satellite output final path
1 parent c1d3ab0 commit d1ab5ca

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/NuGetizer.Tasks/NuGetizer.Inference.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Copyright (c) .NET Foundation. All rights reserved.
209209
.NETFramework, the desktop WinFX.targets are imported which don't have the fix, so we need to
210210
do it "the old way" for this particular output group -->
211211
<_SatelliteDllsProjectOutputGroupOutput Include="@(SatelliteDllsProjectOutputGroupOutput)"
212-
FinalOutputPath="'%(FullPath)')" />
212+
FinalOutputPath="%(FullPath)" />
213213

214214
<_InferredProjectOutput Include="@(BuiltProjectOutputGroupOutput -> '%(FinalOutputPath)');
215215
@(BuiltProjectOutputGroupKeyOutput -> '%(FinalOutputPath)');

src/NuGetizer.Tests/given_a_packaging_project.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,13 @@ public void when_getting_contents_from_packaging_project_then_referenced_outputs
135135
PackagePath = @"lib\net45\c.xml",
136136
}));
137137
}
138+
139+
[Fact]
140+
public void when_packing_then_succeeeds()
141+
{
142+
var result = Builder.BuildScenario(nameof(given_a_packaging_project), target: "Pack", output: output);
143+
144+
result.AssertSuccess(output);
145+
}
138146
}
139147
}

0 commit comments

Comments
 (0)