Skip to content

Commit 3291251

Browse files
committed
Exact match
1 parent 6356266 commit 3291251

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.Composite.sfxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,16 @@
106106
<!-- Flatten ExternalAspNetCoreAppReference into a property -->
107107
<PropertyGroup>
108108
<FileNameList>@(ExternalAspNetCoreAppReference, ';')</FileNameList>
109+
<!-- Add trailing semicolon -->
110+
<FileNameList>$(FileNameList);</FileNameList>
109111
</PropertyGroup>
110112

111113
<ItemGroup>
112114
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb"
113115
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" />
114116

115117
<_SymbolFilesToPackage Include="@(_TransportPdbs)"
116-
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename)'))" />
118+
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename);'))" />
117119
</ItemGroup>
118120
</Target>
119121

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.sfxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,16 @@
102102
<!-- Flatten ExternalAspNetCoreAppReference into a property -->
103103
<PropertyGroup>
104104
<FileNameList>@(ExternalAspNetCoreAppReference, ';')</FileNameList>
105+
<!-- Add trailing semicolon -->
106+
<FileNameList>$(FileNameList);</FileNameList>
105107
</PropertyGroup>
106108

107109
<ItemGroup>
108110
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb"
109111
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" />
110112

111113
<_SymbolFilesToPackage Include="@(_TransportPdbs)"
112-
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename)'))" />
114+
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename);'))" />
113115
</ItemGroup>
114116
</Target>
115117

0 commit comments

Comments
 (0)