summaryrefslogtreecommitdiff
path: root/eng/common/internal
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-02-12 04:06:11 -0500
committerStephen Toub <stoub@microsoft.com>2019-02-12 04:06:11 -0500
commit37d3388d394a305151901720e13a7bd45eb8ca90 (patch)
tree8b3f0e930dca241e224bc4c283a268b21f3e045c /eng/common/internal
parentf0770609f8cdbeba019b35af48b70840f33bd479 (diff)
downloadcoreclr-37d3388d394a305151901720e13a7bd45eb8ca90.tar.gz
coreclr-37d3388d394a305151901720e13a7bd45eb8ca90.tar.bz2
coreclr-37d3388d394a305151901720e13a7bd45eb8ca90.zip
Update dependencies from https://github.com/dotnet/arcade build 20190208.1 (#22506)
This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19108.1 - Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19108.1
Diffstat (limited to 'eng/common/internal')
-rw-r--r--eng/common/internal/Directory.Build.props4
-rw-r--r--eng/common/internal/Directory.Build.targets3
-rw-r--r--eng/common/internal/Tools.csproj19
3 files changed, 26 insertions, 0 deletions
diff --git a/eng/common/internal/Directory.Build.props b/eng/common/internal/Directory.Build.props
new file mode 100644
index 0000000000..e33179ef37
--- /dev/null
+++ b/eng/common/internal/Directory.Build.props
@@ -0,0 +1,4 @@
+<!-- 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. -->
+<Project>
+ <Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
+</Project>
diff --git a/eng/common/internal/Directory.Build.targets b/eng/common/internal/Directory.Build.targets
new file mode 100644
index 0000000000..5d26408a98
--- /dev/null
+++ b/eng/common/internal/Directory.Build.targets
@@ -0,0 +1,3 @@
+<!-- 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. -->
+<Project>
+</Project>
diff --git a/eng/common/internal/Tools.csproj b/eng/common/internal/Tools.csproj
new file mode 100644
index 0000000000..1d2e218376
--- /dev/null
+++ b/eng/common/internal/Tools.csproj
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFramework>net472</TargetFramework>
+ </PropertyGroup>
+ <ItemGroup>
+ <!-- Clear references, the SDK may add some depending on UsuingToolXxx settings, but we only want to restore the following -->
+ <PackageReference Remove="@(PackageReference)"/>
+ <PackageReference Include="Microsoft.DotNet.IBCMerge" Version="$(MicrosoftDotNetIBCMergeVersion)" Condition="'$(UsingToolIbcOptimization)' == 'true'" />
+ <PackageReference Include="Drop.App" Version="$(DropAppVersion)" ExcludeAssets="all" Condition="'$(UsingToolVisualStudioIbcTraining)' == 'true'"/>
+ </ItemGroup>
+ <PropertyGroup>
+ <RestoreSources>
+ https://devdiv.pkgs.visualstudio.com/_packaging/8f470c7e-ac49-4afe-a6ee-cf784e438b93/nuget/v3/index.json;
+ https://devdiv.pkgs.visualstudio.com/_packaging/VS/nuget/v3/index.json;
+ </RestoreSources>
+ </PropertyGroup>
+</Project>