https://github.com/asizikov/archiver-tool
An example of multi-threaded producer-consumer like application using .NET Core
https://github.com/asizikov/archiver-tool
archive console-application csharp dotnet-core multithreading
Last synced: 2 months ago
JSON representation
An example of multi-threaded producer-consumer like application using .NET Core
- Host: GitHub
- URL: https://github.com/asizikov/archiver-tool
- Owner: asizikov
- License: mit
- Created: 2020-01-02T19:32:10.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T12:02:49.000Z (over 6 years ago)
- Last Synced: 2025-01-07T22:13:35.938Z (over 1 year ago)
- Topics: archive, console-application, csharp, dotnet-core, multithreading
- Language: C#
- Homepage:
- Size: 95.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# archiver-tool

## How to build
make sure you have `.NET Core 3` SDK installed.
navigate to the solution folder and execute
```
dotnet build --configuration Release
dotnet test
```
## How to run
on Unix/MacOS:
```
dotnet GZipTest.dll [compress|decompress] /path/to/source.file /path/to/processed/file
```
on Windows:
```
GZipTest.exe [compress|decompress] "C:\path\to the source.file" "C:\path\to processed.bin"
```