Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2020-06-23 23:35:40 +0300
committerGitHub <noreply@github.com>2020-06-23 23:35:40 +0300
commit69fca9234b07906b919a554a445a826af2f4d6cd (patch)
tree896d63734f44cca537e88af06f00215ea3bc4aa0 /Directory.Solution.props
parent178176b5bf51f66562917273986f699f91e969e2 (diff)
Fix solution restore in libraries (#38294)
Fixes https://github.com/dotnet/runtime/issues/37358
Diffstat (limited to 'Directory.Solution.props')
-rw-r--r--Directory.Solution.props6
1 files changed, 6 insertions, 0 deletions
diff --git a/Directory.Solution.props b/Directory.Solution.props
new file mode 100644
index 00000000000..ebd67c8bde0
--- /dev/null
+++ b/Directory.Solution.props
@@ -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>