Merge pull request #64 from Lostsoul0589/master
Updated getting started steps to use msbuild while dot net cli has issues with Xamarin Forms
This commit is contained in:
commit
29881a4e51
|
@ -23,10 +23,13 @@ git clone git@github.com:praeclarum/Ooui.git
|
||||||
cd Ooui
|
cd Ooui
|
||||||
|
|
||||||
dotnet restore
|
dotnet restore
|
||||||
dotnet run --project Samples/Samples.csproj
|
msbuild
|
||||||
|
dotnet run --project Samples/Samples.csproj --no-build
|
||||||
```
|
```
|
||||||
|
|
||||||
Now point your browser at [http://localhost:8080/shared-button](http://localhost:8080/shared-button)
|
There is currently an issue with Xamarin.Forms and building from the dotnet cli, so for now we use the msbuild command and then set the --no-build flag on dotnet run but this will eventually change when the issue is resolved.
|
||||||
|
|
||||||
|
This will open the default starting page for the Samples. Now point your browser at [http://localhost:8080/shared-button](http://localhost:8080/shared-button)
|
||||||
|
|
||||||
You should see a button that tracks the number of times it was clicked.
|
You should see a button that tracks the number of times it was clicked.
|
||||||
The source code for that button is shown in the example below.
|
The source code for that button is shown in the example below.
|
||||||
|
|
Loading…
Reference in New Issue