6 instantiations of AssetPath
Microsoft.CodeAnalysis.Workspaces (6)
Workspace\Solution\AssetPath.cs (5)
82public static implicit operator AssetPath(AssetPathKind kind) => new(kind); 87public static implicit operator AssetPath(ProjectId projectId) => new(AssetPathKind.Projects, projectId); 92public static implicit operator AssetPath(DocumentId documentId) => new(AssetPathKind.Documents, documentId); 100=> new(AssetPathKind.SolutionCompilationState | AssetPathKind.SolutionState | AssetPathKind.Projects, projectId); 108=> new(AssetPathKind.Documents, projectId);
Workspace\Solution\StateChecksums.cs (1)
150new AssetPath(AssetPathKind.DocumentText, assetPath.ProjectId, assetPath.DocumentId),
9 references to AssetPath
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Solution\AssetPath.cs (6)
22public static readonly AssetPath FullLookupForTesting = AssetPathKind.SolutionCompilationState | AssetPathKind.SolutionState | AssetPathKind.Projects | AssetPathKind.Documents; 82public static implicit operator AssetPath(AssetPathKind kind) => new(kind); 87public static implicit operator AssetPath(ProjectId projectId) => new(AssetPathKind.Projects, projectId); 92public static implicit operator AssetPath(DocumentId documentId) => new(AssetPathKind.Documents, documentId); 99public static AssetPath SolutionAndProjectForTesting(ProjectId projectId) 107public static AssetPath DocumentsInProject(ProjectId projectId)
Workspace\Solution\ChecksumCollection.cs (1)
57AssetPath assetPath,
Workspace\Solution\StateChecksums.cs (2)
119AssetPath assetPath, 281AssetPath assetPath,