Fix solution restore in libraries (#38294)

Fixes https://github.com/dotnet/runtime/issues/37358
This commit is contained in:
Viktor Hofer 2020-06-23 22:35:40 +02:00 коммит произвёл GitHub
Родитель 178176b5bf
Коммит 69fca9234b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

6
Directory.Solution.props Normal file
Просмотреть файл

@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<!-- For solution restore, msbuild doesn't honor the property set in Directory.Build.props. -->
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
</PropertyGroup>
</Project>