I have written a WinForms application (C# 2.0, VS2008) that registers several file types during the setup. Each file type has its own icon, but I don't want to have the .ico files in the program directory.
So I added a native resource file (.res) to my project and embedded the icons in there. This works fine, but the values in the resource file overwrite the info in AssemblyInfo.cs (like version and company).
I created the resource file in the Visual Studio designer. Is there any way to create them dynamically, so my build script can update the version info?