20 references to ProjectInfo
Microsoft.CodeAnalysis.Workspaces (20)
Workspace\Solution\ProjectState.cs (20)
512public ProjectId Id => this.ProjectInfo.Id; 515public string? FilePath => this.ProjectInfo.FilePath; 518public string? OutputFilePath => this.ProjectInfo.OutputFilePath; 521public string? OutputRefFilePath => this.ProjectInfo.OutputRefFilePath; 524public CompilationOutputInfo CompilationOutputInfo => this.ProjectInfo.CompilationOutputInfo; 527public string? DefaultNamespace => this.ProjectInfo.DefaultNamespace; 530public SourceHashAlgorithm ChecksumAlgorithm => this.ProjectInfo.ChecksumAlgorithm; 536public string Name => this.ProjectInfo.Name; 540public (string? name, string? flavor) NameAndFlavor => this.ProjectInfo.NameAndFlavor; 543public bool IsSubmission => this.ProjectInfo.IsSubmission; 546public Type? HostObjectType => this.ProjectInfo.HostObjectType; 552public VersionStamp Version => this.ProjectInfo.Version; 558public string AssemblyName => this.ProjectInfo.AssemblyName; 561public CompilationOptions? CompilationOptions => this.ProjectInfo.CompilationOptions; 564public ParseOptions? ParseOptions => this.ProjectInfo.ParseOptions; 567public IReadOnlyList<MetadataReference> MetadataReferences => this.ProjectInfo.MetadataReferences; 570public IReadOnlyList<AnalyzerReference> AnalyzerReferences => this.ProjectInfo.AnalyzerReferences; 573public IReadOnlyList<ProjectReference> ProjectReferences => this.ProjectInfo.ProjectReferences; 576public bool HasAllInformation => this.ProjectInfo.HasAllInformation; 579public bool RunAnalyzers => this.ProjectInfo.RunAnalyzers;