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>2022-04-25 23:06:10 +0300
committerGitHub <noreply@github.com>2022-04-25 23:06:10 +0300
commit09dc0feb6a66d311a180b635abfd6472a918108e (patch)
tree899e87cd1756943ebaa3670260eefceedb813557 /eng/generators.targets
parentfc2f06e5588bef13cc3c3c619c476746f9982bf8 (diff)
Fix VS complaining about missing projects in slns (#68488)
* Fix VS complaining about missing projects in slns Remove inbox (Project-)References in out-of-band projects as these projects already build on top of the shared framework (targeting pack). * Update Microsoft.Extensions ref projects * Update Microsoft.Extensions src projects * Update graph dependencies of Microsoft.Extensions* * Update sources that complained about Span usage
Diffstat (limited to 'eng/generators.targets')
-rw-r--r--eng/generators.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/generators.targets b/eng/generators.targets
index f830dbd52f2..8143fdf8e25 100644
--- a/eng/generators.targets
+++ b/eng/generators.targets
@@ -21,7 +21,7 @@
or ('@(ProjectReference)' != ''
and @(ProjectReference->AnyHaveMetadataValue('Identity', '$(CoreLibProject)')))
or ('$(NetCoreAppCurrentTargetFrameworkMoniker)' == '$(TargetFrameworkMoniker)'
- and '$(DisableImplicitAssemblyReferences)' == 'false'))" />
+ and '$(DisableImplicitAssemblyReferences)' != 'true'))" />
<EnabledGenerators Include="LibraryImportGenerator"
Condition="'$(EnableLibraryImportGenerator)' == ''
and '$(IsSourceProject)' == 'true'