mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 11:37:04 +09:00

Upgrading the netcoreapp2.x and netcoreapp3.0 build configurations in projects to netcoreapp3.1 and cleaning up conditions so that future tfm upgrades require less project file changes. Adding NETStandardError markers to prevent available netstandard2.0 assets being picked instead, same as already done for System.Speech and others. For more details please see the reasoning in the linked issue. Contributes to #53282
17 lines
577 B
XML
17 lines
577 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<!-- This project exists purely to work around Arcade
|
|
behavior. Arcade knows how to restore tasks needed for
|
|
publishing to blob feeds, but it requires a project file that
|
|
imports nuget restore targets to be specified for this to
|
|
work. See details in
|
|
https://github.com/dotnet/arcade/commit/f657be5cb7cd4920334dd9162173b131211a1e17#r31728598.
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="versioning.targets" />
|
|
|
|
</Project>
|