Remove unused source code files

后端 未结 2 1700
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-18 13:25

In Visual Studio 2010 I have a large solution that contains number of .cs files that are no longer used (not referenced in .csproj), but still present in code repository (Cl

相关标签:
2条回答
  • 2020-12-18 14:20

    The only script already discussed on SO was "Visual Studio macro: Find files that aren't included in the project?".

    It could be completed with a cleartool command in order to :

    • checkout the parent directory
    • cleartool rmname -force the_file (which allows to force the delete)
    • checkin the parent directory.

    Since it is a bit cumbersome, another approach would be to:

    • run the script and delete the unused files (simple OS delete, nothing to do with ClearCase)
    • import the result back into ClearCase (with clearfsimport), using a -rmname option: that will automatically delete the target files which are no longer present in the imported source (ie the one where you executed your cleaning script).
    0 讨论(0)
  • 2020-12-18 14:20

    The PowerShell script in my other post will get you 95% of the way. It is geared around TFS but it should be easy to modify for your purposes. The script will get the list of included files from the project file and compare that against the files on disk. You will get the set of files that are on disk but not included in the project. You can either delete them or run some other command against that set of files.

    https://stackoverflow.com/a/23420956/846428

    0 讨论(0)
提交回复
热议问题