-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathElmishStore.fsproj
More file actions
41 lines (41 loc) · 1.83 KB
/
Copy pathElmishStore.fsproj
File metadata and controls
41 lines (41 loc) · 1.83 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Elmish.Store</PackageId>
<Description>A library that merges Elmish and React, providing an external store with efficient, selective component rendering capabilities.</Description>
<PackageTags>fsharp;fable;react;elmish</PackageTags>
<Authors>Łukasz Krzywizna</Authors>
<Company>SelectView Data Solutions</Company>
<Version>0.2.1</Version>
<TargetFramework>net6.0</TargetFramework>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/SelectViewData/elmish-store</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<PackageTags>fable-javascript</PackageTags>
<FablePackageType>library</FablePackageType>
</PropertyGroup>
<PropertyGroup>
<NpmDependencies>
<NpmPackage Name="use-sync-external-store" Version=">= 1.0.0 < 2.0.0" ResolutionStrategy="Max" />
</NpmDependencies>
</PropertyGroup>
<ItemGroup>
<Compile Include="UseSyncExternalStore.fs" />
<Compile Include="ElmishStore.fs" />
<Compile Include="Hooks.fs" />
<Compile Include="Extensions.fs" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6" />
<PackageReference Include="Fable.Package.SDK" Version="1.0.0" />
<PackageReference Include="Fable.Elmish" Version="4.1.0" />
<PackageReference Include="Feliz" Version="2.7.0" />
<PackageReference Include="Feliz.CompilerPlugins" Version="2.2.0" />
</ItemGroup>
</Project>