-
Notifications
You must be signed in to change notification settings - Fork 2
/
Fable.Elmish.Nile.fsproj
29 lines (24 loc) · 1.22 KB
/
Fable.Elmish.Nile.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Fable.Elmish.Nile</PackageId>
<PackageVersion>0.0.1</PackageVersion>
<Description>Extension to Fable.Elmish that enables transforming the stream of dispatched messages from the view to messages that are dispatched to the update function. It's an alternative approach to Fable.Elmish.Streams. However Fable.Elmish.Streams has some nice helpers that you might want to use with Fable.Elmish.Nile.</Description>
<Authors>JEgger</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="*.fsproj; *.fs" PackagePath="fable\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Browser.Dom" Version="1.1.0" />
<PackageReference Include="Fable.Elmish" Version="3.0.6" />
<PackageReference Include="Fable.Reaction" Version="3.3.3" />
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.3.3" />
<PackageReference Update="FSharp.Core" Version="4.7.1" />
</ItemGroup>
</Project>