Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,14 @@ This package is an internal implementation of the .NET Core SDK and is not meant
<!-- Crossgen symbols for Linux include a GUID in the file name which cannot be predicted. -->
<BuiltProjectOutputGroupOutput Include="$(TargetDir)*.map" Condition="'$(CrossGenSymbolsType)' == 'PerfMap'" />

<NuGetPackInput Include="@(BuiltProjectOutputGroupOutput)" />
<!-- Strip duplicate Files by checking for distinct %(FileName)%(Extension) -->
<OutputFileNames Include="%(BuiltProjectOutputGroupOutput.FileName)%(BuiltProjectOutputGroupOutput.Extension)">
<ItemPath>%(BuiltProjectOutputGroupOutput.Identity)</ItemPath>
</OutputFileNames>

<DistinctOutputFileNames Include="@(OutputFileNames->Distinct())"></DistinctOutputFileNames>

<NuGetPackInput Include="%(DistinctOutputFileNames.ItemPath)" />
</ItemGroup>
</Target>

Expand Down