Hi Pete,
send an email to
[email protected]. I''ll check email later today and can send you the source for the tool. That should be that fastest for you to get the change in...
Stefan
>all someone needs to do is add a button that pops up a directory browser and then does something like
>
> private void GetFilesFromDir( DirectoryInfo di , ArrayList files )
> {
> foreach ( FileInfo fi in di.GetFiles("*.csproj") )
> files.Add(fi.DirectoryName+"\\"+fi.Name);
> foreach ( DirectoryInfo sdi in di.GetDirectories() )
> GetFilesFromDir( sdi , files );
> }
>