Skip to content

Commit ecf967b

Browse files
author
John Luo
committed
Fix source build after SDK update
1 parent cf902de commit ecf967b

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

src/Components/Components/src/Microsoft.AspNetCore.Components.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@
5353
<ItemGroup>
5454
<NuspecProperty Include="jsInteropPackageVersion=$(MicrosoftJSInteropPackageVersion)" />
5555
<NuspecProperty Condition="'$(DotNetBuildFromSource)' != 'true'" Include="systemComponentModelAnnotationsPackageVersion=$(SystemComponentModelAnnotationsPackageVersion)" />
56-
<NuspecProperty Include="OutputBinary=$(MSBuildProjectDirectory)\$(OutputPath)**\$(AssemblyName).dll" />
57-
<NuspecProperty Include="OutputSymbol=$(MSBuildProjectDirectory)\$(OutputPath)**\$(AssemblyName).pdb" />
58-
<NuspecProperty Include="OutputDocumentation=$(MSBuildProjectDirectory)\$(OutputPath)**\$(AssemblyName).xml" />
56+
<NuspecProperty Include="AssemblyName=$(AssemblyName)" />
57+
<NuspecProperty Include="OutputPath=$(OutputPath)" />
5958
<NuspecProperty Include="PackageIcon=$(PackageIconFullPath)" />
6059
</ItemGroup>
6160

src/Components/Components/src/Microsoft.AspNetCore.Components.multitarget.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
<icon>packageIcon.png</icon>
1919
</metadata>
2020
<files>
21-
<file src="$OutputBinary$" target="lib\" />
22-
<file src="$OutputDocumentation$" target="lib\" />
23-
<file src="$OutputSymbol$" target="lib\" />
21+
<file src="$OutputPath$**\$AssemblyName$.dll" target="lib\" />
22+
<file src="$OutputPath$**\$AssemblyName$.pdb" target="lib\" />
23+
<file src="$OutputPath$**\$AssemblyName$.xml" target="lib\" />
2424
<file src="$PackageIcon$" target="" />
2525
<file src="..\..\THIRD-PARTY-NOTICES.txt" target=".\THIRD-PARTY-NOTICES.txt" />
2626
</files>

src/Components/Components/src/Microsoft.AspNetCore.Components.netcoreapp3.0.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<icon>packageIcon.png</icon>
1313
</metadata>
1414
<files>
15-
<file src="$OutputBinary$" target="lib\" />
16-
<file src="$OutputDocumentation$" target="lib\" />
17-
<file src="$OutputSymbol$" target="lib\" />
15+
<file src="$OutputPath$**\$AssemblyName$.dll" target="lib\" />
16+
<file src="$OutputPath$**\$AssemblyName$.pdb" target="lib\" />
17+
<file src="$OutputPath$**\$AssemblyName$.xml" target="lib\" />
1818
<file src="$PackageIcon$" target="" />
1919
<file src="..\..\THIRD-PARTY-NOTICES.txt" target=".\THIRD-PARTY-NOTICES.txt" />
2020
</files>

0 commit comments

Comments
 (0)