An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# archiver-tool

![](https://github.com/asizikov/archiver-tool/workflows/build-application/badge.svg)

## 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"
```