I have a property based on a List<string> called DataMembers that I want to iterate through in the template.
<#@ Property Processor="PropertyProcessor" Name="DataMembers" #>
I get the following error:
: error CS0246: Compiling transformation: The type or namespace name 'TestPackage' could not be found (are you missing a using directive or an assembly reference?)
Yeah, probably, but how do I add one?
Where TetstPackage contains the DataMembers type.
I tried
<#@ Import Namespace="blah" #> with the same error. (there is no reference to even using Import Namespace in the docs)
TIA,A,
Jay