You are currently working on UAT 

Documentation comment

Hi,

Not sure if this is the right place for this type of feedback. If not, please refer me to where these comments should be posted.

 

I found a small SDK documentation error in the SDL Project Automation API: Configuring the Analyze Task Settings

One of the c# code samples is duplicated:

"All available settings (i.e. the settings for all project tasks as well as TM settings) are stored in a ISettingsBundle object, which acts as a container for all project settings. By applying the GetSettingsGroup method to the settings bundle, we create a specific ISettingsBundle object as shown below:"

"Language trgLanguage = new Language(CultureInfo.GetCultureInfo(trgLocale));"

This should be (as correctly provided in the complete helper a bit below):

ISettingsBundle settings = project.GetSettings(trgLanguage);

AnalysisTaskSettings analyzeSettings = settings.GetSettingsGroup<AnalysisTaskSettings>();

 

Best regards,

Lennart