21 references to ProjectInfo
Microsoft.CodeAnalysis.Workspaces (21)
Workspace\Solution\ProjectState.cs (21)
634public ProjectId Id => this.ProjectInfo.Id; 637public string? FilePath => this.ProjectInfo.FilePath; 640public string? OutputFilePath => this.ProjectInfo.OutputFilePath; 643public string? OutputRefFilePath => this.ProjectInfo.OutputRefFilePath; 646public CompilationOutputInfo CompilationOutputInfo => this.ProjectInfo.CompilationOutputInfo; 649public string? DefaultNamespace => this.ProjectInfo.DefaultNamespace; 652public SourceHashAlgorithm ChecksumAlgorithm => this.ProjectInfo.ChecksumAlgorithm; 658public string Name => this.ProjectInfo.Name; 662public (string? name, string? flavor) NameAndFlavor => this.ProjectInfo.NameAndFlavor; 665public bool IsSubmission => this.ProjectInfo.IsSubmission; 668public Type? HostObjectType => this.ProjectInfo.HostObjectType; 674public VersionStamp Version => this.ProjectInfo.Version; 680public string AssemblyName => this.ProjectInfo.AssemblyName; 683public CompilationOptions? CompilationOptions => this.ProjectInfo.CompilationOptions; 686public ParseOptions? ParseOptions => this.ProjectInfo.ParseOptions; 689public IReadOnlyList<MetadataReference> MetadataReferences => this.ProjectInfo.MetadataReferences; 692public IReadOnlyList<AnalyzerReference> AnalyzerReferences => this.ProjectInfo.AnalyzerReferences; 695public IReadOnlyList<ProjectReference> ProjectReferences => this.ProjectInfo.ProjectReferences; 698public bool HasAllInformation => this.ProjectInfo.HasAllInformation; 701public bool RunAnalyzers => this.ProjectInfo.RunAnalyzers; 704internal bool HasSdkCodeStyleAnalyzers => this.ProjectInfo.HasSdkCodeStyleAnalyzers;