So I have a Visual Studio 2008 project which has a large amount of binary data that it is currently referencing. I would like to package the binary data much like you can do
You can embed the binary data as a C language array - no resources involved at all. An old classic trick. see for example XD
http://msdn.microsoft.com/en-us/library/saced6x2.aspx
You can embed any "custom" file you want, as well as things like .bmps and stuff VisualStudio "knows" how to edit. Then you can access them with your framework's resource functions like FindResource LoadResource etc...
If you don't have a resource script.
http://msdn.microsoft.com/en-us/library/sxdy04be(v=VS.71).aspx