11 references to Aliases
Microsoft.CodeAnalysis.Features (1)
Completion\Providers\ImportCompletionProvider\AbstractTypeImportCompletionService.cs (1)
82nonGlobalAliasedProjectReferencesSet.AddRange(currentProject.ProjectReferences.Where(pr => !HasGlobalAlias(pr.Aliases)).Select(pr => pr.ProjectId));
Microsoft.CodeAnalysis.Workspaces (7)
Serialization\SerializerService_Asset.cs (1)
82writer.WriteValue(reference.Aliases.ToArray());
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (2)
503aliases: convertedReference.projectReference.Aliases, 565convertedProject.projectReference.Aliases.SequenceEqual(properties.Aliases))
Workspace\Solution\SolutionState.CompilationTracker.cs (2)
1014return compilation.ToMetadataReference(projectReference.Aliases, projectReference.EmbedInteropTypes); 1021var properties = new MetadataReferenceProperties(aliases: projectReference.Aliases, embedInteropTypes: projectReference.EmbedInteropTypes);
Workspace\Solution\SolutionState.cs (2)
1991return compilation.ToMetadataReference(projectReference.Aliases, projectReference.EmbedInteropTypes); 1998var properties = new MetadataReferenceProperties(aliases: projectReference.Aliases, embedInteropTypes: projectReference.EmbedInteropTypes);
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildWorkspace.cs (1)
589_applyChangesProjectFile.AddProjectReference(project.Name, new ProjectFileReference(project.FilePath, projectReference.Aliases));
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
ProjectSystemShim\VisualStudioProjectTests\MetadataToProjectReferenceConversionTests.vb (2)
206Assert.Equal("alias1", Assert.Single(Assert.Single(getReferencingProject().ProjectReferences).Aliases)) 215Assert.Equal("alias1", Assert.Single(Assert.Single(getReferencingProject().ProjectReferences).Aliases))