14 references to Instance
Microsoft.Build (14)
Definition\Project.cs (3)
2155return ReadOnlyEmptyDictionary<string, string>.Instance; 2207return ReadOnlyEmptyDictionary<string, List<string>>.Instance; 2311return ReadOnlyEmptyDictionary<string, ProjectTargetInstance>.Instance;
Definition\ProjectCollection.cs (1)
605return ReadOnlyEmptyDictionary<string, string>.Instance;
Definition\SubToolset.cs (1)
73return ReadOnlyEmptyDictionary<string, ProjectPropertyInstance>.Instance;
Definition\Toolset.cs (2)
395return ReadOnlyEmptyDictionary<string, ProjectPropertyInstance>.Instance; 411return ReadOnlyEmptyDictionary<string, SubToolset>.Instance;
Instance\ProjectInstance.cs (2)
1122return ReadOnlyEmptyDictionary<string, string>.Instance; 3141return ReadOnlyEmptyDictionary<string, TValue>.Instance;
Instance\TaskFactoryWrapper.cs (4)
321(IReadOnlyDictionary<string, string>?)namesOfPropertiesWithRequiredAttribute ?? ReadOnlyEmptyDictionary<string, string>.Instance, 322(IReadOnlyDictionary<string, string>?)namesOfPropertiesWithOutputAttribute ?? ReadOnlyEmptyDictionary<string, string>.Instance, 323(IReadOnlyDictionary<string, string>?)namesOfPropertiesWithAmbiguousMatches ?? ReadOnlyEmptyDictionary<string, string>.Instance, 324(IReadOnlyDictionary<string, TaskPropertyInfo>?)propertyInfoCache ?? ReadOnlyEmptyDictionary<string, TaskPropertyInfo>.Instance);
Instance\TaskRegistry.cs (1)
1648get { return _usingTaskParameters ?? ReadOnlyEmptyDictionary<string, TaskPropertyInfo>.Instance; }