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:
authorMarek Safar <marek.safar@gmail.com>2020-02-18 11:10:51 +0300
committerGitHub <noreply@github.com>2020-02-18 11:10:51 +0300
commita0ae6619929e811a7f2440f371b8ed6db85bc6ec (patch)
tree92513686e51cc44e8592bbfc83e0bd952ca6f5cd /eng/illink.targets
parent8d386b4a246204decaf76cf96aeff8556d3f888a (diff)
Update ILLinkTasksVersion dependency (#32170)
* Revert "Revert "Update ILLinkTasksVersion dependency (#2334)" (#31807)" This reverts commit 334391bdc9d4e9e20ea8b8a19ec5788da680b850. * Update ILLink version * Update ILLink task netcore execution version * Another version update
Diffstat (limited to 'eng/illink.targets')
-rw-r--r--eng/illink.targets4
1 files changed, 3 insertions, 1 deletions
diff --git a/eng/illink.targets b/eng/illink.targets
index 59960f31aa1..ae2de562586 100644
--- a/eng/illink.targets
+++ b/eng/illink.targets
@@ -10,7 +10,7 @@
<!-- Inputs and outputs of ILLinkTrimAssembly -->
<PropertyGroup>
<ILLinkTasksDir>$([MSBuild]::NormalizeDirectory('$(PkgILLink_Tasks)', 'tools'))</ILLinkTasksDir>
- <ILLinkTasksPath Condition="'$(ILLinkTasksPath)' == '' and '$(MSBuildRuntimeType)' == 'core'">$(ILLinkTasksDir)netcoreapp2.0/ILLink.Tasks.dll</ILLinkTasksPath>
+ <ILLinkTasksPath Condition="'$(ILLinkTasksPath)' == '' and '$(MSBuildRuntimeType)' == 'core'">$(ILLinkTasksDir)netcoreapp3.0/ILLink.Tasks.dll</ILLinkTasksPath>
<ILLinkTasksPath Condition="'$(ILLinkTasksPath)' == '' and '$(MSBuildRuntimeType)' != 'core'">$(ILLinkTasksDir)$(NetFrameworkCurrent)/ILLink.Tasks.dll</ILLinkTasksPath>
<ILLinkTrimAssemblyPath>$(IntermediateOutputPath)$(TargetName)$(TargetExt)</ILLinkTrimAssemblyPath>
<ILLinkTrimAssemblySymbols>$(IntermediateOutputPath)$(TargetName).pdb</ILLinkTrimAssemblySymbols>
@@ -83,6 +83,8 @@
<ILLinkArgs>$(ILLinkArgs) --skip-unresolved true</ILLinkArgs>
<!-- keep interface implementations -->
<ILLinkArgs>$(ILLinkArgs) --disable-opt unusedinterfaces</ILLinkArgs>
+ <!-- disable optimization to unblock dependencies bump -->
+ <ILLinkArgs>$(ILLinkArgs) --disable-opt ipconstprop</ILLinkArgs>
<!-- keep PreserveDependencyAttribute unless a project explicitly disables it -->
<ILLinkArgs Condition="'$(ILLinkKeepDepAttributes)' != 'false'">$(ILLinkArgs) --keep-dep-attributes true</ILLinkArgs>
</PropertyGroup>