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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>2020-04-28 01:20:07 +0300
committerGitHub <noreply@github.com>2020-04-28 01:20:07 +0300
commit4d6d8adebef9216c99d07b41a3261a47bf7a91f5 (patch)
tree684b8f0a27695f8673ad802b956780596354fcd6 /Directory.Build.targets
parentd396e94a9531ccd6409a903ad92a6791e1ffe282 (diff)
[master] Update dependencies from dotnet/arcade (#1144)
* Update dependencies from https://github.com/dotnet/arcade build 20200421.14 - Microsoft.DotNet.ApiCompat: 5.0.0-beta.20201.2 -> 5.0.0-beta.20221.14 - Microsoft.DotNet.Arcade.Sdk: 5.0.0-beta.20201.2 -> 5.0.0-beta.20221.14 * Add dotnet-tools nuget feed * Work around ApiCompat change https://github.com/dotnet/arcade/issues/5361 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com> Co-authored-by: Sven Boemer <sbomer@gmail.com>
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets4
1 files changed, 4 insertions, 0 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 1e22ab0b4..c8d68655d 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -16,6 +16,10 @@
<RunApiCompat Condition="'$(HasMatchingContract)' != 'true'">false</RunApiCompat>
<TargetsForTfmSpecificContentInPackage Condition="'$(HasMatchingContract)' == 'true'">$(TargetsForTfmSpecificContentInPackage);_AddReferenceAssemblyToPackage</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
+ <!-- Work around ApiCompat breaking change https://github.com/dotnet/arcade/issues/5361 -->
+ <ItemGroup Condition="'$(RunApiCompat)' == 'true'">
+ <_DependencyDirectories Include="$(IntermediateOutputPath)" />
+ </ItemGroup>
<!-- Add a ProjectReference to the reference assembly project for ApiCompat. -->
<!-- This also ensures that it is built when the current project gets packaged. -->
<ItemGroup Condition="'$(HasMatchingContract)' == 'true'">