1 write to ImplicitImportLocation
Microsoft.Build (1)
Construction\ProjectImportElement.cs (1)
167ImplicitImportLocation = implicitImportLocation,
10 references to ImplicitImportLocation
Microsoft.Build (10)
Construction\ProjectImportElement.cs (2)
122/// Gets the <see cref="ImplicitImportLocation"/> of the import. This indicates if the import was implicitly 129/// If the import is an implicit one (<see cref="ImplicitImportLocation"/> != None) then this element points
Definition\Project.cs (2)
2871foreach (ProjectRootElement import in _data.ImportClosure.Where(i => i.ImportingElement?.ImplicitImportLocation == ImplicitImportLocation.Top).Select(i => i.ImportedProject)) 2886foreach (ProjectRootElement import in _data.ImportClosure.Where(i => i.ImportingElement?.ImplicitImportLocation == ImplicitImportLocation.Bottom).Select(i => i.ImportedProject))
Evaluation\Evaluator.cs (2)
898if (import.ImplicitImportLocation == ImplicitImportLocation.Top) 948if (import.ImplicitImportLocation == ImplicitImportLocation.Bottom)
Evaluation\Preprocessor.cs (3)
140foreach (ResolvedImport resolvedImport in _project.Imports.Where(i => i.ImportingElement.ImplicitImportLocation != ImplicitImportLocation.None)) 183foreach (ResolvedImport import in implicitImports.Where(i => i.ImportingElement.ImplicitImportLocation == ImplicitImportLocation.Top)) 209foreach (var import in implicitImports.Where(i => i.ImportingElement.ImplicitImportLocation == ImplicitImportLocation.Bottom))
ObjectModelRemoting\ConstructionObjectLinks\ProjectImportElementLink.cs (1)
15/// Access to remote <see cref="ProjectImportElement.ImplicitImportLocation"/>.