2021-07-30 19:16:51 +00:00
|
|
|
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. -->
|
2019-02-05 13:42:55 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net472</TargetFramework>
|
2019-02-13 19:39:26 +00:00
|
|
|
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
|
2020-05-08 12:56:55 +00:00
|
|
|
<AutomaticallyUseReferenceAssemblyPackages>false</AutomaticallyUseReferenceAssemblyPackages>
|
2019-02-05 13:42:55 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
2021-05-27 13:06:28 +00:00
|
|
|
<!-- Clear references, the SDK may add some depending on UsuingToolXxx settings, but we only want to restore the following -->
|
2019-02-05 13:42:55 +00:00
|
|
|
<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>
|
2019-04-15 12:33:52 +00:00
|
|
|
<RestoreSources></RestoreSources>
|
|
|
|
<RestoreSources Condition="'$(UsingToolIbcOptimization)' == 'true'">
|
|
|
|
https://devdiv.pkgs.visualstudio.com/_packaging/dotnet-core-internal-tooling/nuget/v3/index.json;
|
|
|
|
</RestoreSources>
|
|
|
|
<RestoreSources Condition="'$(UsingToolVisualStudioIbcTraining)' == 'true'">
|
|
|
|
$(RestoreSources);
|
2019-02-05 13:42:55 +00:00
|
|
|
https://devdiv.pkgs.visualstudio.com/_packaging/VS/nuget/v3/index.json;
|
|
|
|
</RestoreSources>
|
|
|
|
</PropertyGroup>
|
2019-02-13 19:39:26 +00:00
|
|
|
|
|
|
|
<!-- Repository extensibility point -->
|
|
|
|
<Import Project="$(RepositoryEngineeringDir)InternalTools.props" Condition="Exists('$(RepositoryEngineeringDir)InternalTools.props')" />
|
2019-02-05 13:42:55 +00:00
|
|
|
</Project>
|