Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2022-02-17 13:54:31 +0300
committerGitHub <noreply@github.com>2022-02-17 13:54:31 +0300
commite0b0bb43aa0ebd770b002c6d5ad860373589157d (patch)
tree72c1d9ea83da49fd2980dd5deee13669a2d82e18 /eng/illink.targets
parent9bb256f50824b34282866e1cc14fc695eb2dc52c (diff)
Remove dead code in illink.targets (#65494)
That target still gets executed but as `ILLinkTrimAssembly` doesn't get set anymore by binplacing and instead in the libs's Directory.Build.targets file, it doesn't serve a purpose anymore.
Diffstat (limited to 'eng/illink.targets')
-rw-r--r--eng/illink.targets9
1 files changed, 0 insertions, 9 deletions
diff --git a/eng/illink.targets b/eng/illink.targets
index d88f0862621..eecd3163559 100644
--- a/eng/illink.targets
+++ b/eng/illink.targets
@@ -9,7 +9,6 @@
<PropertyGroup>
<TargetsTriggeredByCompilation Condition="'$(DesignTimeBuild)' != 'true'">
$(TargetsTriggeredByCompilation);
- _SetILLinkTrimAssembly;
ILLinkTrimAssembly
</TargetsTriggeredByCompilation>
</PropertyGroup>
@@ -199,14 +198,6 @@
</ItemGroup>
</Target>
- <Target Name="_SetILLinkTrimAssembly"
- Condition="'$(ILLinkTrimAssembly)' == ''">
- <PropertyGroup>
- <!-- Currently ILLink cannot handle type projections from Windows.winmd, disable if the project references it -->
- <ILLinkTrimAssembly Condition="'%(ReferencePath.FileName)%(ReferencePath.Extension)' == 'Windows.winmd'">false</ILLinkTrimAssembly>
- </PropertyGroup>
- </Target>
-
<!-- ILLink.Tasks arguments common to runs for both individual libraries and for the entire runtime pack -->
<Target Name="SetCommonILLinkArgs">
<PropertyGroup>