private void TryLoadConfigurationPropertiesFile()

in Platform/Tools/PowerShell/JetCmdlet/Infra/TeamCity/TeamCityProperties.cs [111:123]


    private void TryLoadConfigurationPropertiesFile()
    {
      if(!IsRunningInTeamCity)
        return;
      if(myConfigurationProperties != null)
        return;

      var pathFile = new FileSystemPath(GetSystemProperty("teamcity.configuration.properties.file") + ".xml");
      if(!pathFile.ExistsFile)
        return;

      myConfigurationProperties = ReadJavaPropertiesXml(pathFile);
    }