Attention Project Owner, We have been informed by CodePlex users that your project does not meet the CodePlex project hosting requirements. To be hosted on CodePlex, the source code to your project must be included. We have unpublished your project in order for you to post the source code. After doing so, you may republish your project. Please contact us with any questions. Thank you,CodePlex Administration
Web Resource Refactor Add-in
Visual Studio Add-in to convert projects' files or directories to embedded web resources. 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. Project Topics Known Issues Web Resource Refactor Add-in is working only on C# projects for now. An near-future working issue is to make it works with other projects' types as well.
|