7 types derived from XlfTask
Microsoft.DotNet.XliffTasks (7)
Tasks\EnsureAllResourcesTranslated.cs (1)
12public sealed class EnsureAllResourcesTranslated : XlfTask
Tasks\GatherTranslatedSource.cs (1)
11public sealed class GatherTranslatedSource : XlfTask
Tasks\GatherXlf.cs (1)
12public sealed class GatherXlf : XlfTask
Tasks\SortXlf.cs (1)
10public sealed class SortXlf : XlfTask
Tasks\TransformTemplates.cs (1)
15public sealed class TransformTemplates : XlfTask
Tasks\TranslateSource.cs (1)
11public sealed class TranslateSource : XlfTask
Tasks\UpdateXlf.cs (1)
10public sealed class UpdateXlf : XlfTask
14 references to XlfTask
Microsoft.DotNet.XliffTasks (14)
Tasks\EnsureAllResourcesTranslated.cs (3)
32if (XlfTask.IsNeutralLanguage(language)) 37string xlfPath = XlfTask.GetXlfPath(sourceDocumentPath, language); 42xlfDocument = XlfTask.LoadXlfDocument(xlfPath);
Tasks\GatherXlf.cs (2)
38if (XlfTask.IsNeutralLanguage(language)) 43string xlfPath = XlfTask.GetXlfPath(sourceDocumentPath, language);
Tasks\SortXlf.cs (2)
26string xlfPath = XlfTask.GetXlfPath(sourceDocumentPath, language); 31xlfDocument = XlfTask.LoadXlfDocument(xlfPath);
Tasks\TransformTemplates.cs (1)
46if (XlfTask.IsNeutralLanguage(language))
Tasks\TranslateSource.cs (2)
23TranslatableDocument sourceDocument = XlfTask.LoadSourceDocument(sourcePath, XlfFile.GetMetadata(MetadataKey.XlfSourceFormat)); 24XlfDocument xlfDocument = XlfTask.LoadXlfDocument(XlfFile.ItemSpec);
Tasks\UpdateXlf.cs (4)
34TranslatableDocument sourceDocument = XlfTask.LoadSourceDocument(sourcePath, sourceFormat); 35string sourceDocumentId = XlfTask.GetSourceDocumentId(sourcePath); 39string xlfPath = XlfTask.GetXlfPath(sourceDocumentPath, language); 44xlfDocument = XlfTask.LoadXlfDocument(xlfPath, language, createIfNonExistent: AllowModification);