What I want to accomplish is that at design time the designer can enter a value for some custom property on my
custom task and that this value is accessed at executing time.
I thought this would involve adding a IDTSCustomProperty to the ComponentMetaData.CustomPropertyCollection and the right place to do this to mee seemed be in the ProvideComponentProperties() method:
IDTSCustomProperty90 property = ComponentMetaData.CustomPropertyCollection.New();
property.Name = "MyLittleProperty";
However, after compiling and redeploying the custom component and adding it to a package, the property does not show up in the editor.
Would anyone have suggestions on how what I want to do should be done right?
I thought this would involve adding a IDTSCustomProperty to the ComponentMetaData.CustomPropertyCollection and the right place to do this to mee seemed be in the ProvideComponentProperties() method:
IDTSCustomProperty90 property = ComponentMetaData.CustomPropertyCollection.New();
property.Name = "MyLittleProperty";
However, after compiling and redeploying the custom component and adding it to a package, the property does not show up in the editor.
Would anyone have suggestions on how what I want to do should be done right?