TeamCity.CSharpInteractive.HostApi/DotNet/IDotNetSettings.cs (11 lines of code) (raw):

// ReSharper disable InconsistentNaming namespace HostApi.DotNet; internal interface IDotNetSettings { bool LoggersAreRequired { get; } string DotNetExecutablePath { get; } string DotNetMSBuildLoggerDirectory { get; } string DotNetVSTestLoggerDirectory { get; } string? TeamCityServiceMessagesBackupPathEnvValue { get; } string? TeamCityTestReportFilesPathEnvValue { get; } string? TeamCityFallbackToStdOutTestReportingEnvValue { get; } }