/ProjectCleaner

Simple cleaner for projects

Primary LanguageC#

Project Cleaner

Simple C# program to clean your projects` assembly/trash files.

Functionality

The API is pretty straightforward: Initializing the Cleaner class with path to be cleaned and parameters which describes what to be cleaned is all it takes

Cleaner cleaner = new Cleaner(@"E:\Projects", 
StrategyType.VisualStudio, StrategyType.JetBrains);

cleaner.Clean();
Console.WriteLine(cleaner.Statistics());

Supported cleaning strategies

Currently there are only 2 strategies supported:

StrategyType.VisualStudio // -> bin, obj folders
StrategyType.JetBrains // -> .idea folder