I'd like to be able to write a macro (or use some other form of automation) to add a series of files to a designated folder in a Visual Studio 2005 deployment solution's 'File System' editor window which ultimately controls the file system on the target machine. When I try and record a macro in the IDE, I end up with code:
DTE.ExecuteCommand("Action.File")
which simply opens a dialogue that allows me to browse for one or more files. Ideally I want to be able to add a series of specific files in code by referencing their full pathnames and, once added, manipulate the properties of each (e.g. Condition, Exclude, Hidden etc).
Any help would be appreciated.
DTE.ExecuteCommand("Action.File")
which simply opens a dialogue that allows me to browse for one or more files. Ideally I want to be able to add a series of specific files in code by referencing their full pathnames and, once added, manipulate the properties of each (e.g. Condition, Exclude, Hidden etc).
Any help would be appreciated.