How do you create a resource-only assembly?One should create a resource only assembly if you need to update the resources frequently without recompiling the whole solution.
Steps to create it are:
1. Create a new empty project. 2. Add a new resource item to the project. 3. In project's property pages, choose output type as class library.. 4. Build project to have the resource files being compiled in an assembly.
|