1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 01:50:53 +09:00
Satori/eng/empty.csproj
Jarret Shook 1ddda582ad Fix dotnet/coreclr#24867 (dotnet/coreclr#24870)
Pre SDK 3.0, a project type that is not .csproj would not include Directory.Build.targets. Change empty.proj to empty.csproj to allow source build, which uses a 2.1 sdk to build, correctly import Directory.Build.targets.

Commit migrated from c6d6fc20a5
2019-05-30 19:07:50 -07:00

15 lines
523 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>netcoreapp2.0</TargetFramework>
</PropertyGroup>
</Project>