130a6b657a
[main] Update dependencies from dotnet/arcade - Coherency Updates: - Microsoft.DotNet.XliffTasks: from 1.0.0-beta.21378.1 to 1.0.0-beta.21380.1 (parent: Microsoft.DotNet.Arcade.Sdk) - Disable implicit namespaces
27 lines
1.6 KiB
XML
27 lines
1.6 KiB
XML
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. -->
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets>
|
|
<AutomaticallyUseReferenceAssemblyPackages>false</AutomaticallyUseReferenceAssemblyPackages>
|
|
</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></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);
|
|
https://devdiv.pkgs.visualstudio.com/_packaging/VS/nuget/v3/index.json;
|
|
</RestoreSources>
|
|
</PropertyGroup>
|
|
|
|
<!-- Repository extensibility point -->
|
|
<Import Project="$(RepositoryEngineeringDir)InternalTools.props" Condition="Exists('$(RepositoryEngineeringDir)InternalTools.props')" />
|
|
</Project>
|