How do I remove unnecessary resources from my project?

前端 未结 10 1694
深忆病人
深忆病人 2021-02-12 22:55

I am working with a very big project (a solution that contains 16 projects and each project contains about 100 files).

It is written in C++/C# with Visual Studio 2005.

10条回答
  •  無奈伤痛
    2021-02-12 23:05

    Maybe Find Unused Resources in a .NET Solution helps here? Basically, you'll have to check which resources are used (e.g. by comprehensive code coverage checks) and remove the unused ones.

    And probably you should not be afraid by using the trail-and-error approach to cleaning up.

提交回复
热议问题