Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilia-kosenkov/dotnet-purge
dotnet-purge
https://github.com/ilia-kosenkov/dotnet-purge
cli dotnet tool
Last synced: 19 days ago
JSON representation
dotnet-purge
- Host: GitHub
- URL: https://github.com/ilia-kosenkov/dotnet-purge
- Owner: Ilia-Kosenkov
- License: mit
- Created: 2023-03-04T22:32:07.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-03-06T09:16:30.000Z (over 1 year ago)
- Last Synced: 2024-10-07T08:10:02.332Z (about 1 month ago)
- Topics: cli, dotnet, tool
- Language: F#
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet-purge
A dotnet CLI tool
Recursively purges all folders that end with `*bin` or `*obj`, effectively clearing all .NET build artifacts.
## Hot to use
```powershell
dotnet purge # Searches for `*bin` and `*obj` from current directory
dotnet purge . # Same
dotnet purge path/to/project # Searches in `path/to/project`# Also
dotnet-purge
```## How to install from source
```powershell
# pwsh
git clone https://github.com/Ilia-Kosenkov/dotnet-purge
cd dotnet-purge
dotnet publish
dotnet tool install -g dotnet-purge --add-source .\nupkg\
```