diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index 8d37e28..dfc4aae 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -27,16 +27,10 @@ $(PaketRootPath)paket.bootstrapper.exe $(PaketToolsPath)paket.bootstrapper.exe $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\ - + "$(PaketBootStrapperExePath)" $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" - - - - true - true - True @@ -136,7 +130,7 @@ - $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``)) $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``)) @@ -169,7 +163,7 @@ - + diff --git a/docs/content/introduction.fsx b/docs/content/introduction.fsx index 0107701..4e43fb2 100644 --- a/docs/content/introduction.fsx +++ b/docs/content/introduction.fsx @@ -16,7 +16,7 @@ This is by no means a complete stable example and should only be used for demons The following example show how the Enabling/Disabling of a button can be controled by looking at the input of another input field (TextBox). -![Enable Disable Button](../files/img/enable-disable.gif) +![Enable Disable Button](img/enable-disable.gif) *) @@ -46,7 +46,7 @@ buttonForm.Show () Incoming emits can be transformed using the mapping functionality. Following example show how the input of a textbox can be transformed into the reversed value. -![Reversed](../files/img/reversed.gif) +![Reversed](img/reversed.gif) *) module String = @@ -70,7 +70,7 @@ reverseForm.Show () Merging multiple events into one can be done with the `Observable.merge` primitive. Following example shows how we change the value of a label with the buttons ("Red" and "Green"). -![Red-Green](../files/img/red-green.gif) +![Red-Green](img/red-green.gif) *) let redBtn = new Button() @@ -91,4 +91,4 @@ let colorForm = new Form () colorForm.Controls.Add redBtn colorForm.Controls.Add greenBtn colorForm.Controls.Add result -colorForm.Show () \ No newline at end of file +colorForm.Show ()