[master] Update dependencies from dotnet/arcade dotnet/core-setup dotnet/corefx ...
[mono-project.git] / eng / common / internal / Tools.csproj
blob1a39a7ef3f67b1f615db542a09e65dc57556289c
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
3 <Project Sdk="Microsoft.NET.Sdk">
4 <PropertyGroup>
5 <TargetFramework>net472</TargetFramework>
6 <ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
7 </PropertyGroup>
8 <ItemGroup>
9 <!-- Clear references, the SDK may add some depending on UsuingToolXxx settings, but we only want to restore the following -->
10 <PackageReference Remove="@(PackageReference)"/>
11 <PackageReference Include="Microsoft.DotNet.IBCMerge" Version="$(MicrosoftDotNetIBCMergeVersion)" Condition="'$(UsingToolIbcOptimization)' == 'true'" />
12 <PackageReference Include="Drop.App" Version="$(DropAppVersion)" ExcludeAssets="all" Condition="'$(UsingToolVisualStudioIbcTraining)' == 'true'"/>
13 </ItemGroup>
14 <PropertyGroup>
15 <RestoreSources></RestoreSources>
16 <RestoreSources Condition="'$(UsingToolIbcOptimization)' == 'true'">
17 https://devdiv.pkgs.visualstudio.com/_packaging/dotnet-core-internal-tooling/nuget/v3/index.json;
18 </RestoreSources>
19 <RestoreSources Condition="'$(UsingToolVisualStudioIbcTraining)' == 'true'">
20 $(RestoreSources);
21 https://devdiv.pkgs.visualstudio.com/_packaging/VS/nuget/v3/index.json;
22 </RestoreSources>
23 </PropertyGroup>
25 <!-- Repository extensibility point -->
26 <Import Project="$(RepositoryEngineeringDir)InternalTools.props" Condition="Exists('$(RepositoryEngineeringDir)InternalTools.props')" />
27 </Project>