Description While working on ASP.NET Server Control's libraries I often need to embed a lot of resources (images, java scripts, text files etc.).
Unfortunately in Visual Studio 2005/2008 there is no a convenient way of converting content files to embedded resources. They have to be converted manually one by one and as you know in two steps:
change Build Action from Content to Embedded Resource;
add assembly WebResource attribute to map the embedded resource;
So, I have spent some time on building Visual Studio Add-in to help me to convert in batch project's folders or files to embedded resources.
Known Issues Web Resource Refactor Add-in is working only on C# projects for now.