madskristensen / Tweakster

A Visual Studio extension
Apache License 2.0
241 stars 23 forks source link

Bin & obj folder not being removed on clean command #12

Closed Only-Bimal closed 4 years ago

Only-Bimal commented 4 years ago

When I clean my projects, bin and obj folders are not being removed. Following is the config: OS: Win 10 Build 20180 VS 2019 Enterprise Sample Project : https://github.com/bimal-b/Binger

madskristensen commented 4 years ago

The bin and obj folders are removed before the regular Clean command runs. For many project types, Clean will add empty bin and obj folders back. Here's a description of the feature from Tweaks readme file:

Both bin and obj are now fully deleted when the Clean command is executed. It does so right before the regular Clean command runs. The Clean command will add the bin and obj folders back, so be aware of that when testing this feature.

In other words, this is by design

Only-Bimal commented 4 years ago

Thanks. I tested again. it is working as you described. Closing the issue.