AVR Studio 5 is based on the Visual Studio Isolated Shell, so it looks and behaves a lot like Visual Studio 2010. Even if you haven't worked with AVR Studio 5, your knowledge Visual Studio can probably help me here.
I have already figured out how to make an AVR Studio 5 extension that installs some Project Templates. Now I want to do something different that should be much simpler: I want the extension to copy an arbitrary file into an arbitrary folder inside the AVR Studio 5 installation directory. For example, I want to put a header file named foo.h inside the .vsix file, and I want this header file to be copied to C:\Program Files (x86)\Atmel\AVR Studio 5.0\AVR Toolchain\avr\include when my extension is installed.
This seems like a very basic thing that any extension system ought to be capable of. Yet, I have looked at the documentation of the Content element and its children in the VSIX Extension Schema Reference and can't find a child element that will do what I want. As far as I can tell, neither VSPackage nor CustomExtension support copying files.
Is there a way to make a Visual Studio extension that copies a file when it is installed?