1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\DocumentId.cs (1)
33
this.
Id
= guid;
16 references to Id
Microsoft.CodeAnalysis.Features (3)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingSolutionCrawlerLogger.cs (1)
167
logAggregator.IncreaseCount(ValueTuple.Create(LowerPriority, documentId.
Id
));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingNormalPriorityProcessor.cs (2)
92
UnitTestingSolutionCrawlerLogger.LogHigherPriority(Processor._logAggregator, id.
Id
);
242
UnitTestingSolutionCrawlerLogger.LogProcessDocument(Processor._logAggregator, documentId.
Id
, processedEverything);
Microsoft.CodeAnalysis.Workspaces (13)
Rename\ConflictEngine\ConflictResolver.cs (1)
412
.OrderBy(l => l.IsInSource ? solution.GetDocumentId(l.SourceTree)!.
Id
: Guid.Empty)
Workspace\Solution\DocumentId.cs (5)
61
=> string.Format("({0}, #{1} - {2})", this.GetType().Name, this.
Id
, DebugName);
74
this.
Id
== other.
Id
&&
79
=> Hash.Combine(this.ProjectId, this.
Id
.GetHashCode());
90
writer.WriteGuid(
Id
);
Workspace\Solution\ProjectState.cs (3)
31
/// The documents in this project. They are sorted by <see cref="DocumentId.
Id
"/> to provide a stable sort for
37
/// The additional documents in this project. They are sorted by <see cref="DocumentId.
Id
"/> to provide a stable sort for
43
/// The analyzer config documents in this project. They are sorted by <see cref="DocumentId.
Id
"/> to provide a stable sort for
Workspace\Solution\TextDocumentStates.cs (3)
112
/// The entries in the map are sorted by <see cref="DocumentId.
Id
"/>, which yields locally deterministic order but not the order that
304
return x.
Id
.CompareTo(y.
Id
);
Workspace\Workspace.cs (1)
2571
var name = document != null ? document.Name : "<Document" + documentId.
Id
+ ">";