I have a big solution and there are many *.cs-files that actually don't belong to my solution (not included to csproj-files) any more. Is there any way to find all of them and remove?
-
1You mean the files are on disk, but not included in any projects and you want to delete them from disk? Or do you mean they're included in your solution, but the classes never used? – Ray Jan 10 '12 at 09:32
-
1Unused classes can be found using Resharper: http://stackoverflow.com/questions/4646174/resharper-find-all-unused-classes but I'm not sure if that's what you're asking. – Ray Jan 10 '12 at 09:33
-
2possible duplicate of [Visual Studio macro: Find files that aren't included in the project?](http://stackoverflow.com/questions/2000197/visual-studio-macro-find-files-that-arent-included-in-the-project) – Ray Jan 10 '12 at 09:46
-
Also another approached is discussed here: http://stackoverflow.com/questions/561043/delete-files-from-disk-that-arent-in-a-visual-studio-project – Ray Jan 10 '12 at 09:47
4 Answers
This PowerShell script should do what you are looking for. It parses the project file to get the included code files. Then it compares that list to the actual files on disk. The remaining files are your unused/obsolete files.
The script can either delete the unused files from disk or pend them as deletes in TFS.
<#
.SYNOPSIS
Find and process files in a project folder that are not included in the project.
.DESCRIPTION
Find and process files in a project folder that are not included in the project.
Options to delete the files or to add them as pending deletes for TFS. Use TF.exe to pend the deletes and start the check-in process for the files.
This is necessary when trying to delete files that are not currently included in a Visual Studio project.
.PARAMETER Project
The path/name for the project file.
.PARAMETER VsVersion
The Visual Studio version (10, 11, 12). Used to locate the tf.exe file.
.PARAMETER DeleteFromDisk
Just delete the files from disk. No interaction with any source control.
.PARAMETER TfsCheckin
After pending the deletes, open the check-in dialog.
#>
[CmdletBinding()]
param(
[Parameter(Position=0, Mandatory=$true)]
[string]$Project,
[Parameter(Mandatory=$false)]
[ValidateRange(10,12)]
[int] $VsVersion = 12,
[switch]$DeleteFromDisk,
[switch]$TfsCheckin
)
$ErrorActionPreference = "Stop"
$tfPath = "${env:ProgramFiles(X86)}\Microsoft Visual Studio $VsVersion.0\Common7\IDE\TF.exe"
$projectPath = Split-Path $project
if($Project.EndsWith("csproj"))
{
$fileType = "*.cs"
}
else
{
$fileType = "*.vb"
}
$fileType
$projectFiles = Select-String -Path $project -Pattern '<compile' | % { $_.Line -split '\t' } | `
% {$_ -replace "(<Compile Include=|\s|/>|["">])", ""} | % { "{0}\{1}" -f $projectPath, $_ }
Write-Host "Project files:" $projectFiles.Count
$diskFiles = gci -Path $path -Recurse -Filter $fileType | % { $_.FullName}
Write-Host "Disk files:" $diskFiles.Count
$diff = (compare-object $diskFiles $projectFiles -PassThru)
Write-Host "Excluded Files:" $diff.Count
#create a text file for log purposes
$diffFilePath = Join-Path $projectPath "DiffFileList.txt"
$diff | Out-File $diffFilePath -Encoding UTF8
notepad $diffFilePath
#just remove the files from disk
if($DeleteFileOnly)
{
$diff | % { Remove-Item -Path $_ -Force -Verbose}
}
else #TFS options
{
#this will add the files as pending deletes in TFS (awaiting check-in)
$diff | % {
[Array]$arguments = @("delete", "`"$_`"")
& "$tfPath" $arguments
}
if($Checkin)
{
#start the check-in process for the pending deletes
[Array]$arguments = "checkin", "/recursive", "$projectPath"
& $tfPath $arguments
}
}

- 126
- 1
- 6
-
1Thanks! I used this script to create a more detailed one that includes other types of files and does not use TFS: https://gist.github.com/mcliment/d9008a9288cea9d088af – Marc Climent May 14 '14 at 16:11
-
4I too used this file as well as @MarcCliment's to create yet another PowerShell script that takes a .sln file instead of a single proj file. It deletes all files excluded from all projects in the provided solution. Check it out! http://goo.gl/PdR9Fg – mikesigs Jan 15 '15 at 06:44
-
I use the modified script from @mikesigs, works like a charm except that it wrongly shows some files as inactive from a WPF application (the XAML files). – Roemer Oct 03 '16 at 06:40
When you select the project in solution explorer, click on the button "Show all files" in the solution explorer's toolbar. This will show you files and folders in the project directory, but which are not included in the project. This allows you to delete them or readd them to the project.
I don't know of an automated solution, so you'd have to do this for each project manually.

- 6,447
- 2
- 34
- 46
-
2Yes, I know that solution, but my project is very very BIG, so I am looking for something to automate this :-( – EgorBo Jan 10 '12 at 09:40
Use visual studio to add all files to source control. It will only add files that are part of a project so the non-project files will not be added. You can then simply commit all files and check the project out somewhere else. Only the relevant files would be checked out in the target location.
Given that you have a large project it is of course unlikely that you haven't already got some kind of source control, so you may have to break the existing connection, clear the original source location after the checkout to the new location, copy the target to original and let the originals scm detect the file removal in the original and submit the removal.

- 14,886
- 5
- 45
- 56
first you have to stop debugging (shift+F5) . after that you can right click on that *cs class and delete it simply .

- 1