Hi.
One thing you should pay attention to is that it isn't enough to simply add the resources you use in the pbr file. You have to reference them the exact same way as they are referenced in your application. This means that if in your application you reference the file using full filename, then you have to do the same in your pbr. Examples:
Appication icon: myapp.ico -> in pbr you should add myapp.ico.
Appication icon: c:\myapp\myapp.ico -> in pbr you should add c:\myapp\myapp.ico.
Appication icon: .\myapp.ico -> in pbr you should add .\myapp.ico.
Appication icon: .\resources\myapp.ico -> in pbr you should add .\resources\myapp.ico.
That is the most important thing to pay attention when adding resource (images - icons) files to pbr. And this has to be done fore every resource you want to embed.
Andreas.