Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed Mar 28, 2021
1 parent a4f6eba commit 354f5a5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@ Trace is an application for transforming bitmaps into vector graphics using [Bit
* [Potrace](http://potrace.sourceforge.net/) Transforming bitmaps into vector graphics.
* [mkbitmap](http://potrace.sourceforge.net/mkbitmap.html) Transform images into bitmaps with scaling and filtering.

# Building

Download and install [.NET 5.0 SDK](https://dotnet.microsoft.com/download).

### Build

```bash
dotnet build ./src/TraceGui/TraceGui.csproj -c Release
```

### Run

```bash
dotnet run --project ./src/TraceGui/TraceGui.csproj -c Release
```

### Publish

```bash
dotnet publish ./src/TraceGui/TraceGui.csproj -c Release -f net5.0 -r win7-x64 -o TraceGui-win7-x64
```

```bash
dotnet publish ./src/TraceGui/TraceGui.csproj -c Release -f net5.0 -r debian.8-x64 -o TraceGui-debian.8-x64
```

```bash
dotnet publish ./src/TraceGui/TraceGui.csproj -c Release -f net5.0 -r ubuntu.14.04-x64 -o TraceGui-ubuntu.14.04-x64
```

```bash
dotnet publish ./src/TraceGui/TraceGui.csproj -c Release -f net5.0 -r osx.10.12-x64 -o TraceGui-osx.10.12-x64
```

# Licensing

Trace is licensed under the [GPL-3.0 License](LICENSE).

0 comments on commit 354f5a5

Please sign in to comment.