VB.NET - How do you create a resource-only assembly?

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.
VB.NET - Explain how to retrieve resources using ResourceManager class.
Explain how to retrieve resources using ResourceManager class - Use ResourceManager class to retrieve resources that exist in an assembly.......
VB.NET - How do you install assembly to the Global Assembly Cache?
How do you install assembly to the Global Assembly Cache? - Using Gacutil.exe:eg: gacutil -i MyLibrary.dll.....
VB.NET - Explain how managed code slower than unmanaged code
Explain how managed code slower than unmanaged code - Managed code not always is slower than unmanaged code.......
Post your comment