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:
authorSven Boemer <sbomer@gmail.com>2020-04-24 21:17:25 +0300
committerGitHub <noreply@github.com>2020-04-24 21:17:25 +0300
commitae9ddaf12b93029d54ca6793ba7d893cc4797224 (patch)
treeeebbb46db234149842b609aa31ba597b1ad744ef /eng/illink.targets
parent3736247219fe43cd78e14a80f298b0b633faa1b4 (diff)
Pick up renamed Microsoft.NET.ILLink.Tasks package (#35214)
Diffstat (limited to 'eng/illink.targets')
-rw-r--r--eng/illink.targets6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/illink.targets b/eng/illink.targets
index cecc5c2a5a3..ac7db3b9095 100644
--- a/eng/illink.targets
+++ b/eng/illink.targets
@@ -8,8 +8,8 @@
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="illink.tasks"
- Version="$(ILLinkTasksVersion)"
+ <PackageReference Include="Microsoft.NET.ILLink.Tasks"
+ Version="$(MicrosoftNETILLinkTasksVersion)"
PrivateAssets="all"
IsImplicitlyDefined="true"
ExcludeAssets="build"
@@ -18,7 +18,7 @@
<!-- Inputs and outputs of ILLinkTrimAssembly -->
<PropertyGroup>
- <ILLinkTasksDir>$([MSBuild]::NormalizeDirectory('$(PkgILLink_Tasks)', 'tools'))</ILLinkTasksDir>
+ <ILLinkTasksDir>$([MSBuild]::NormalizeDirectory('$(PkgMicrosoft_NET_ILLink_Tasks)', 'tools'))</ILLinkTasksDir>
<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>