updates after build
This commit is contained in:
Родитель
e463c263a2
Коммит
ea9a143fff
|
@ -5,7 +5,7 @@ F# Functional App Development, using Xamarin.Forms
|
|||
|
||||
Never write a ViewModel class again! Conquer the world with clean dynamic UIs!
|
||||
|
||||
This library uses a variation of [elmish](https://elmish.github.io/), an Elm architecture implemented in F#, to build Xamarin.Forms applications for iOS, Android, Mac and more. Elmish was originally written for [Fable](https://github.com/fable-compiler) applications, however it is used here for mobile applications using Xamarin.Forms.
|
||||
This library allows you to uses the ultra-simple Model-View-Update architecture to build Xamarin.Forms applications for iOS, Android, Mac and more. a It is a variation of [elmish](https://elmish.github.io/), an Elm architecture implemented in F#. Elmish was originally written for [Fable](https://github.com/fable-compiler) applications, however it is used here for mobile applications using Xamarin.Forms.
|
||||
|
||||
**This is a sample and may change.**
|
||||
|
||||
|
@ -13,14 +13,16 @@ This library uses a variation of [elmish](https://elmish.github.io/), an Elm arc
|
|||
|
||||
* [Documentation Guide](https://fsprojects.github.io/Elmish.XamarinForms/guide.html)
|
||||
|
||||
* [Roadmap/TODOs](https://github.com/fsprojects/Elmish.XamarinForms/blob/master/ROADMAP.md)
|
||||
* [TODOs](https://github.com/fsprojects/Elmish.XamarinForms/blob/master/ROADMAP.md)
|
||||
|
||||
* [Contributor guide](DEVGUIDE.md)
|
||||
|
||||
* [Release Notes](RELEASE_NOTES.md)
|
||||
|
||||
## Contributing
|
||||
|
||||
Please contribute to this library through issue reports, pull requests, code reviews and discussion.
|
||||
|
||||
Credits
|
||||
-----
|
||||
This library is inspired by [Elmish.WPF](https://github.com/Prolucid/Elmish.WPF), [Elmish.Forms](https://github.com/dboris/elmish-forms) and [elmish](https://github.com/elmish/elmish), written by [et1975](https://github.com/et1975). This project technically has no tie to [Fable](http://fable.io/), which is an F# to JavaScript transpiler that is definitely worth checking out.
|
||||
This library is inspired by [Elmish.WPF](https://github.com/Prolucid/Elmish.WPF), [Elmish.Forms](https://github.com/dboris/elmish-forms) and [elmish](https://github.com/elmish/elmish), written by [et1975](https://github.com/et1975). This project technically has no tie to [Fable](http://fable.io/), which is an F# to JavaScript transpiler that is great.
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
// Copyright 2018 Elmish.XamarinForms contributors. See LICENSE.md for license.
|
||||
|
||||
// F# Compiler Daemon sample
|
||||
//
|
||||
// Sample use, assumes app has a reference to ELmish.XamrinForms.LiveUpdate:
|
||||
//
|
||||
// cd Elmish.XamarinForms\Samples\CounterApp\CounterApp
|
||||
// adb -d forward tcp:9867 tcp:9867
|
||||
// dotnet run --project ..\..\..\fscd\fscd.fsproj -- --eval @out.args
|
||||
// dotnet run --project ..\..\..\fscd\fscd.fsproj -- --watch --webhook:http://localhost:9867/update @out.args
|
||||
|
||||
|
||||
module fscd.Driver
|
||||
|
||||
open FSharp.Compiler.PortaCode.CodeModel
|
||||
|
|
Загрузка…
Ссылка в новой задаче