AssemblyInfo Updater

I am attempting to version all of my assembly files with the same version.  We are using MSBuild to perform the build part.  And I am attempting to use the AssemblyInfo Updater action.  Do I have to specify each individual project file, because that would take forever.  Tthere is not much help on what the options do.  For instance Recurse subdirectories?

Lance,

You can specify wildcards in the files field which should make it easier for you. And the recurse option will continue searching for files matching the filespec in sub directories.

hth.

Thanks for the information. As soon as I added the wildcard in there it worked. I had the filename typed out and since it’s always AssemblyInfo.cs I thought that would work. But if I used AssemblyInfo*.cs it did.

Wouldn’t it be nice if you could use a FileSet? Just an idea…