in Platform/Tools/PowerShell/JetCmdlet/Infra/TeamCity/TeamCityProperties.cs [125:137]
private void TryLoadSystemPropertiesFile()
{
if(!IsRunningInTeamCity)
return;
if(mySystemProperties != null)
return;
FileSystemPath pathFile = TryGetSystemPropertiesFilePath();
if(!pathFile.ExistsFile)
return;
mySystemProperties = ReadJavaPropertiesXml(pathFile);
}