2019-02-05 13:42:55 +00:00
<?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>
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 >
<!-- 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 >
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>