I have a custom wizard for VB.Net applications, libraries, and web controls
which generate full solutions that have just about everything except for the
logic and schema code setup. Basically, it saves us 1 to 2 days of work
(work days) of usual project / folder and virtual directory setup time.
This is all great and dandy for what we need...but now, I am at the point
where I would like to pass some arguments to the custom.js file from the
wizard (IDTWizard) library.
Sample Template Snip:
Public Class [!output SAFE_CLASS_NAME]
' My Comment Here
' More Comments with [!output MyValueFromIDTWizard]
End Class
In the IDTWizard library, I am using the following:
Dim MyValueFromIDTWizard As String = "More Comments"
(EnvDTe.Project Object Here).AddFromTemplate(yaddayaddayadda)
How can I do this?
Thanks in advance,
Mythran
Mythran - 07 Dec 2004 21:12 GMT
>I have a custom wizard for VB.Net applications, libraries, and web controls
>which generate full solutions that have just about everything except for
[quoted text clipped - 22 lines]
> Thanks in advance,
> Mythran
Figured it out :)
Mythran