dotnet-installer/Directory.Build.targets
dotnet-maestro[bot] 9ce64552b6
[master] Update dependencies from dotnet/sdk (#9172)
[master] Update dependencies from dotnet/sdk
- Coherency Updates:
  - Microsoft.WindowsDesktop.App.Ref: from 6.0.0-alpha.1.20570.2 to 6.0.0-alpha.1.20618.2 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.WindowsDesktop.SharedFramework.x64.6.0: from 6.0.0-alpha.1.20570.2 to 6.0.0-alpha.1.20618.2 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.NetCore.SharedFramework.x64.6.0: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Ref: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Runtime.win-x64: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.App.Host.win-x64: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.DotNetHostResolver: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.NETCore.Platforms: from 6.0.0-alpha.1.20561.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.AspNetCore.App.Ref.Internal: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - VS.Redist.Common.AspNetCore.SharedFramework.x64.6.0: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.EntityFrameworkCore: from 6.0.0-alpha.1.20563.8 to 6.0.0-alpha.1.20622.2 (parent: Microsoft.AspNetCore.App.Runtime.win-x64)
  - Microsoft.AspNetCore.App.Runtime.win-x64: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - dotnet-dev-certs: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - dotnet-user-secrets: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - dotnet-watch: from 6.0.0-alpha.1.20573.11 to 6.0.0-alpha.1.20622.11 (parent: Microsoft.NET.Sdk)
  - Microsoft.DotNet.Common.ItemTemplates: from 6.0.0-alpha.1.20574.1 to 6.0.0-alpha.1.20622.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.Dotnet.WinForms.ProjectTemplates: from 6.0.0-alpha.1.20570.3 to 6.0.0-alpha.1.20602.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - Microsoft.WindowsDesktop.App.Runtime.win-x64: from 6.0.0-alpha.1.20570.2 to 6.0.0-alpha.1.20618.2 (parent: Microsoft.NET.Sdk)
  - Microsoft.DotNet.Wpf.ProjectTemplates: from 6.0.0-alpha.1.20570.3 to 6.0.0-alpha.1.20618.1 (parent: Microsoft.WindowsDesktop.App.Runtime.win-x64)
  - Microsoft.NET.Test.Sdk: from 16.9.0-preview-20201123-04 to 16.9.0-preview-20201222-01 (parent: Microsoft.NET.Sdk)
  - Microsoft.NET.ILLink.Tasks: from 6.0.0-alpha.1.20561.1 to 6.0.0-alpha.1.20622.1 (parent: Microsoft.NET.Sdk)
  - Microsoft.Net.Compilers.Toolset: from 3.9.0-2.20574.4 to 3.9.0-4.20622.12 (parent: Microsoft.NET.Sdk)
  - Microsoft.Build: from 16.9.0-preview-20561-01 to 16.9.0-preview-20621-02 (parent: Microsoft.NET.Sdk)
  - NuGet.Build.Tasks: from 5.9.0-preview.2.6967 to 5.9.0-preview.3.6981 (parent: Microsoft.NET.Sdk)

 - Merge remote-tracking branch 'upstream/master' into darc-master-3f693b44-a860-4569-8621-22998351b733

 - Build using targeting and runtime packs from dependency updates
2020-12-23 14:53:41 +00:00

14 lines
713 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<!-- Update KnownFrameworkReferences to target the right version of the runtime -->
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'
and $(MicrosoftNETCoreAppRefPackageVersion.StartsWith('$(_TargetFrameworkVersionWithoutV)'))
and '$(MSBuildProjectName)' != 'core-sdk-tasks'">
<FrameworkReference
Update="Microsoft.NETCore.App"
TargetingPackVersion="$(MicrosoftNETCoreAppRefPackageVersion)"
RuntimeFrameworkVersion="$(MicrosoftNETCoreAppRuntimePackageVersion)" />
</ItemGroup>
</Project>