1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectId.cs (1)
48this.Id = guid;
46 references to Id
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
Remote\JsonSerializableDocumentId.cs (1)
19return new JsonSerializableDocumentId(documentId.ProjectId.Id, documentId.Id);
Microsoft.CodeAnalysis.Features (7)
CodeLens\CodeLensReferencesService.cs (1)
158documentId.ProjectId.Id,
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
154var projectGuid = project.Id.Id.ToString();
Completion\Providers\SymbolCompletionItem.cs (2)
226properties.Add(KeyValuePair.Create("InvalidProjects", string.Join(";", supportedPlatforms.InvalidProjects.Select(id => id.Id)))); 227properties.Add(KeyValuePair.Create("CandidateProjects", string.Join(";", supportedPlatforms.CandidateProjects.Select(id => id.Id))));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingLowPriorityProcessor.cs (1)
167UnitTestingSolutionCrawlerLogger.LogProcessProject(Processor._logAggregator, projectId.Id, processedEverything);
FindUsages\DefinitionItemFactory.cs (1)
151.Add(DefinitionItem.MetadataSymbolOriginatingProjectIdGuid, originatingProjectId.Id.ToString())
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
227var tempFilePath = Path.Combine(tempPath, projectId.Id.ToString());
Microsoft.CodeAnalysis.Features.UnitTests (13)
EditAndContinue\EmitSolutionUpdateResultsTests.cs (1)
34projectId.Id,
FindUsages\DefinitionItemFactoryTests.cs (12)
96expressionMap.Add(project.Id.Id.ToString(), $"project.{nameof(Project.Id)}.{nameof(Project.Id.Id)}.{nameof(Project.Id.Id.ToString)}()"); 200("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 278("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 368("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 426("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 594("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 652("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()), 753("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()) 809("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()) 916("MetadataSymbolOriginatingProjectIdGuid", project.Id.Id.ToString()),
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Extensions\ProtocolConversions.cs (1)
817return id.Id + "|" + id.DebugName;
Extensions\SourceGeneratedDocumentUri.cs (1)
35var projectId = identity.DocumentId.ProjectId.Id.ToString(GuidFormat);
Handler\Diagnostics\DiagnosticsPullCache.cs (1)
95writer.WriteGuid(diagnosticData.ProjectId.Id);
Handler\Diagnostics\IDiagnosticProjectInformationService.cs (1)
38ProjectIdentifier = project.Id.Id.ToString(),
Microsoft.CodeAnalysis.PublicApiAnalyzers.CodeFixes (1)
PublicApiFixHelpers.cs (1)
33return $"{ApiDocEquivalenceKeyPrefix};{doc.ProjectId.Id};{doc.Id};{isPublic}";
Microsoft.CodeAnalysis.Remote.Workspaces (2)
Serialization\MessagePackFormatters.cs (2)
115var serializeDebugName = _projectIds.TryAdd(value.Id, value); 118GuidFormatter.Instance.Serialize(ref writer, value.Id, options);
Microsoft.CodeAnalysis.Workspaces (14)
Diagnostics\Extensions.cs (1)
498foreach (var projectRef in project.ProjectReferences.OrderBy(r => r.ProjectId.Id))
Workspace\Solution\ProjectId.cs (9)
28/// Checksum of this ProjectId, built only from <see cref="Id"/>. 70=> string.Format("({0}, #{1} - {2})", this.GetType().Name, this.Id, DebugName); 80this.Id == other.Id; 89=> this.Id.GetHashCode(); 93writer.WriteGuid(Id); 113writer.WriteGuid(@this.Id); 117=> this.Id.CompareTo(other.Id);
Workspace\Solution\Solution.cs (1)
124/// Ordered by <see cref="ProjectState.Id"/>'s <see cref="ProjectId.Id"/> value.
Workspace\Solution\SolutionState.cs (1)
141/// Ordered by <see cref="ProjectState.Id"/>'s <see cref="ProjectId.Id"/> value.
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (1)
46var projectIdBytes = projectId.Id.ToByteArray();
Workspace\Workspace.cs (1)
2593var name = project != null ? project.Name : "<Project" + projectId.Id + ">";
Microsoft.VisualStudio.LanguageServices (2)
TaskList\ExternalErrorDiagnosticUpdateSource.cs (2)
179await diagnosticManagerService.ClearDiagnosticsAsync(projectId.Id.ToString(), cancellationToken).ConfigureAwait(false); 212await diagnosticManagerService.AppendDiagnosticsAsync(projectId.Id.ToString(), collections.ToImmutable(), cancellationToken).ConfigureAwait(false);
Microsoft.VisualStudio.LanguageServices.Xaml (2)
Implementation\LanguageServer\Handler\Completion\CompletionHandler.cs (1)
97Data = new CompletionResolveData { ProjectGuid = documentId.ProjectId.Id, DocumentGuid = documentId.Id, Position = position, DisplayText = xamlCompletion.DisplayText }
Implementation\LanguageServer\Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
142ProjectIdentifier = project.Id.Id.ToString(),