The DtsTask attribute has a LocalizationType member. This should be your resource class. SSIS will look for two properties: TaskDisplayName TaskDescription These must be public, static string properties on your “LocalizationType” class. Your task code would look like this:
|
1 2 3 4 |
[ DtsTask( LocalizationType = typeof(Resources) ) ] public class ExecuteCatalogPackageTask : Task { } |
You can add localizable string resources to your class from the Project settings: Note, the … Continued

