sajalverma17 / GitBranchDiffer

A Visual Studio Extension that displays source files Added/Modified/Renamed between a base branch you choose to diff against, and the current working branch in your Git repo. The diffed files are shown in the Solution Explorer using a Solution Explorer Filter
MIT License
6 stars 1 forks source link

Create a post-MSBuild-clean task to completely remove bin/obj folders #20

Closed sajalverma17 closed 2 years ago

sajalverma17 commented 3 years ago

The default MS-build clean task does not delete LibGitSharp2 folders when run from Visual Studio, need extra task post build to properly clean out bin/obj folders recursively for each cs project.

sajalverma17 commented 3 years ago

Run git clean -f -d -x -e *.user task in AfterBuild target of GitBranchDiffer.csproj. Clicking Clean Solution in Visual Studio will then completely clean all bin and obj folders.

sajalverma17 commented 2 years ago

Closing, is trivial and not a problem yet.