Dear all,
Is there a way to programmatically increase maximum embedded file size?
Thanks.
Dear all,
Is there a way to programmatically increase maximum embedded file size?
Thanks.
Hi Hiroshi,
You can set it per project:
var settings = project.GetSettings();
var group = settings.GetSettingsGroup("SDL XLIFF 1.0 v 1.0.0.0");
group.GetSetting<int>("MaximumFileEmbed").Value = 100;
project.UpdateSettings(settings);