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
Add empty ILLink target for blazor
  • Loading branch information
sbomer committed Dec 8, 2022
commit f959fe231d62216deb295674ecbe2da8483ea524
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,23 @@ Copyright (c) .NET Foundation. All rights reserved.
<Target Name="ComputeFilesToPublish"
DependsOnTargets="PrepareForPublish;
ComputeResolvedFilesToPublishList;
ILLink;
CreateReadyToRunImages;
GeneratePublishDependencyFile;
GenerateSingleFileBundle">
</Target>

<!--
============================================================
ILLink

Initially an empty placeholder target. When trimming, this
will be redefined to invoke ILLink to perform IL trimming.
The placeholder exists to allow other targets to depend on it for ordering purposes.
============================================================
-->
<Target Name="ILLink" />

<PropertyGroup>
<CopyBuildOutputToPublishDirectory Condition="'$(CopyBuildOutputToPublishDirectory)'==''">true</CopyBuildOutputToPublishDirectory>
<CopyOutputSymbolsToPublishDirectory Condition="'$(CopyOutputSymbolsToPublishDirectory)'==''">true</CopyOutputSymbolsToPublishDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1528,7 +1528,7 @@ static void Main() {}
@{
System.IO.Compression.ZipFile.OpenRead("test.zip");
}
""",
""",
},
AdditionalProperties =
{
Expand Down