|
38 | 38 |
|
39 | 39 | <PackageReference Include="Microsoft.IO.Redist" Condition="'$(FeatureMSIORedist)' == 'true'" /> |
40 | 40 |
|
41 | | - <PackageReference Include="Microsoft.CodeAnalysis.Collections" PrivateAssets="all" /> |
42 | | - <PackageReference Include="Microsoft.CodeAnalysis.PooledObjects" PrivateAssets="all" /> |
43 | 41 | <PackageReference Include="Microsoft.BuildXL.Processes" Condition="'$(FeatureReportFileAccesses)' == 'true'" PrivateAssets="all" /> |
44 | 42 | <!-- Remove the direct NETStandard.Library dependency when Microsoft.BuildXL.Processes stops bringing in netstandard1.x dependencies |
45 | 43 | or when a .NET 10 SDK is used (NuGet Package Pruning eliminates netstandard1.x dependencies). --> |
46 | 44 | <PackageReference Include="NETStandard.Library" VersionOverride="2.0.3" PrivateAssets="all" Condition="'$(FeatureReportFileAccesses)' == 'true'" /> |
47 | 45 | </ItemGroup> |
48 | 46 |
|
| 47 | + <ItemGroup> |
| 48 | + <PackageReference Include="Microsoft.CodeAnalysis.Collections" PrivateAssets="all" /> |
| 49 | + |
| 50 | + <!-- Display files included by the Microsoft.CodeAnalysis.Collections source package in a 'SourcePackages\Collections' folder --> |
| 51 | + <Content Update="@(Content)"> |
| 52 | + <Link Condition="'%(NuGetPackageId)' == 'Microsoft.CodeAnalysis.Collections'">SourcePackages\Collections\%(Link)</Link> |
| 53 | + </Content> |
| 54 | + <Compile Update="@(Compile)"> |
| 55 | + <Link Condition="'%(NuGetPackageId)' == 'Microsoft.CodeAnalysis.Collections'">SourcePackages\Collections\%(Link)</Link> |
| 56 | + </Compile> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | + <ItemGroup> |
| 60 | + <PackageReference Include="Microsoft.CodeAnalysis.PooledObjects" PrivateAssets="all" /> |
| 61 | + |
| 62 | + <!-- Display files included by the Microsoft.CodeAnalysis.PooledObjects source package in a 'SourcePackages\PooledObjects' folder --> |
| 63 | + <Content Update="@(Content)"> |
| 64 | + <Link Condition="'%(NuGetPackageId)' == 'Microsoft.CodeAnalysis.PooledObjects'">SourcePackages\PooledObjects\%(Link)</Link> |
| 65 | + </Content> |
| 66 | + <Compile Update="@(Compile)"> |
| 67 | + <Link Condition="'%(NuGetPackageId)' == 'Microsoft.CodeAnalysis.PooledObjects'">SourcePackages\PooledObjects\%(Link)</Link> |
| 68 | + </Compile> |
| 69 | + </ItemGroup> |
| 70 | + |
49 | 71 | <ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and '$(DotNetBuildSourceOnly)' != 'true'"> |
50 | 72 | <PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" PrivateAssets="all" /> |
51 | 73 | </ItemGroup> |
|
0 commit comments