Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable package pruning globally
  • Loading branch information
nblumhardt committed Nov 1, 2025
commit 5d4ab18cbdd2cf97facfc5975da6977ea00db2e8
2 changes: 2 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Not required on .NET 10 GA, remove for 10.0.0 -->
<RestoreEnablePackagePruning Condition=" '$(TargetFramework)' == 'net462' ">false</RestoreEnablePackagePruning>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
<Reference Include="System" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- See https://github.com/NuGet/Home/issues/6001 -->
<NoWarn>NU5118</NoWarn>
<!-- Not required on .NET 10 GA -->
<RestoreEnablePackagePruning Condition=" '$(TargetFramework)' == 'net462' ">false</RestoreEnablePackagePruning>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading