Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GTK sample #299

Merged
merged 2 commits into from
Jan 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Getting started

SqueakyApp/SqueakyApp.sln

By default iOS and Android projects are created. For WPF apps use `--WPF`, for macOS use `--macOS` for example:
By default iOS and Android projects are created. But you can also target WPF with `--WPF`, macOS with `--macOS` and/or GTK with `--GTK`. Here some common examples, but feel free to change the targets to the ones you require:

Android only:

Expand All @@ -48,9 +48,13 @@ macOS only:

dotnet new fabulous-app -n SqueakyApp --macOS --Android=false --iOS=false

All 4 platforms:
GTK only:

dotnet new fabulous-app -n SqueakyApp --WPF --macOS
dotnet new fabulous-app -n SqueakyApp --GTK --Android=false --iOS=false

All 5 platforms:

dotnet new fabulous-app -n SqueakyApp --WPF --macOS --GTK

5. If you are using Visual Studio for Mac and you want to start with File -> New, make sure you target ".NET Standard" to add the references to Fabulous:

Expand Down