Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 0d94aa7

Browse files
committed
Fix failed test
1 parent a6c036b commit 0d94aa7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Build/NuGet.Build.Packaging.Tests/Scenarios/given_a_custom_build_project/build.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<Authors>NuGet</Authors>
1515
<Description>Package for '$(MSBuildProjectName)' project.</Description>
1616
<IncludeOutputsInPackage>false</IncludeOutputsInPackage>
17-
<IncludeFrameworkReferencesInPackage>true</IncludeFrameworkReferencesInPackage>
17+
<IncludeFrameworkReferencesInPackage>false</IncludeFrameworkReferencesInPackage>
1818
</PropertyGroup>
1919
<ItemGroup>
2020
<PackageFile Include="Readme.txt" />

src/Build/NuGet.Build.Packaging.Tests/given_a_custom_build_project.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public void when_packing_then_can_include_content()
2020
var result = Builder.BuildScenario(nameof(given_a_custom_build_project));
2121

2222
Assert.Equal(TargetResultCode.Success, result.ResultCode);
23-
23+
2424
Assert.Contains(result.Items, item => item.Matches(new
2525
{
2626
PackagePath = "Readme.txt",

0 commit comments

Comments
 (0)