Skip to content

Commit

Permalink
Merge pull request #60 from savaughn/macos-instructions
Browse files Browse the repository at this point in the history
Update readme for MacOS building and running
  • Loading branch information
sonik-br authored Sep 16, 2024
2 parents e626788 + aefb7de commit ea165c8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,25 @@ On Linux version it's not possible to use drag-and-drop.
- Execute `GDMENUCardManager` in `GDMENUCardManager/src/GDMENUCardManager.AvaloniaUI/bin/Release/net6.0/linux-x64/publish`
-via double click or by running `./GDMENUCardManager` or by `dotnet ./GDMENUCardManager`

### Building for MacOS
#### Install dependencies
##### Runtime is required to run the application and dotnet is required to build the application.

- install .NET Runtime 6.0 from [here](https://dotnet.microsoft.com/download/dotnet/6.0/runtime)
- `brew install dotnet`
#### Build
##### Navigate to the `src` folder and build the project using dotnet publish.
```bash
$ cd src/
$ dotnet publish GDMENUCardManager.AvaloniaUI/GDMENUCardManager.AvaloniaUI.csproj -c Release
```
#### Run
##### Navigate to the publish folder and run the application.
```bash
$ cd GDMENUCardManager.AvaloniaUI/bin/Release/net6.0/publish/
$ ./GDMENUCardManager
```

### Credits
This software is made possible by using third party tools:

Expand Down

0 comments on commit ea165c8

Please sign in to comment.