1 write to Id
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectId.cs (1)
48
this.
Id
= guid;
20 references to Id
Microsoft.CodeAnalysis.Features (6)
Completion\Providers\AbstractInternalsVisibleToCompletionProvider.cs (1)
154
var projectGuid = project.Id.
Id
.ToString();
Completion\Providers\SymbolCompletionItem.cs (2)
254
properties.Add(KeyValuePair.Create("InvalidProjects", string.Join(";", supportedPlatforms.InvalidProjects.Select(id => id.
Id
))));
255
properties.Add(KeyValuePair.Create("CandidateProjects", string.Join(";", supportedPlatforms.CandidateProjects.Select(id => id.
Id
))));
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.UnitTestingLowPriorityProcessor.cs (1)
167
UnitTestingSolutionCrawlerLogger.LogProcessProject(Processor._logAggregator, projectId.
Id
, processedEverything);
FindUsages\DefinitionItemFactory.cs (1)
155
.Add(DefinitionItem.MetadataSymbolOriginatingProjectIdGuid, originatingProjectId.
Id
.ToString())
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
230
var tempFilePath = Path.Combine(tempPath, projectId.
Id
.ToString());
Microsoft.CodeAnalysis.Workspaces (14)
Diagnostics\Extensions.cs (1)
400
foreach (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);
80
this.
Id
== other.
Id
;
89
=> this.
Id
.GetHashCode();
93
writer.WriteGuid(
Id
);
113
writer.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)
143
/// Ordered by <see cref="ProjectState.Id"/>'s <see cref="ProjectId.
Id
"/> value.
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (1)
51
projectId.
Id
.TryWriteBytes(bytesToChecksum);
Workspace\Workspace.cs (1)
2561
var name = project != null ? project.Name : "<Project" + projectId.
Id
+ ">";