Skip to content

Commit c37f351

Browse files
committed
Baseline for 0.2
1 parent 11b8e07 commit c37f351

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.1</Version>
3+
<Version>0.2</Version>
44
</PropertyGroup>
55
</Project>

src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<ApplicationIcon>TaskSeq.ico</ApplicationIcon>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
8-
<Title>Computation expression `taskSeq` for processing IAsyncEnumerable sequences</Title>
8+
<Title>Computation expression 'taskSeq' for processing IAsyncEnumerable sequences and module functions</Title>
99
<Version>$(Version)</Version>
1010
<Authors>Abel Braaksma; Don Syme</Authors>
11-
<Description>The `taskSeq` computation expression combines the power of `seq` and `task` of F# 6.0 to work with IAsyncEnumerable sequences seamlessly.
12-
Build on top of the success of `task` using statically compiled resumable state machines under the hood.</Description>
13-
<Copyright>Copyright 2022 Abel Braaksma</Copyright>
11+
<Description>Provides the 'taskSeq' computation expression to support performance and statially optimized async sequences using the new F# 6.0 resumable state machines, similar to 'task'.
12+
13+
This library brings C#'s concept of 'await foreach' to F#.</Description>
14+
<Copyright>Copyright 2022</Copyright>
1415
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Control.TaskSeq</PackageProjectUrl>
16+
<RepositoryUrl>https://github.com/fsprojects/FSharp.Control.TaskSeq</RepositoryUrl>
1517
<PackageIcon>taskseq-icon.png</PackageIcon>
1618
<PackageOutputPath>..\..\packages</PackageOutputPath>
1719
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1820
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageReleaseNotes>
23+
v.0.2
24+
- moved from NET 6.0, to NetStandard 2.1 for greater compatibility, no functional changes
25+
- updated readme with progress overview, corrected meta info, added release notes
26+
v.0.1.1
27+
- updated meta info in nuget package and added readme
28+
v.0.1
29+
- initial release
30+
</PackageReleaseNotes>
1931
</PropertyGroup>
2032

2133
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -41,5 +53,6 @@ Build on top of the success of `task` using statically compiled resumable state
4153
<Pack>True</Pack>
4254
<PackagePath>\</PackagePath>
4355
</None>
56+
<None Include="..\..\README.md" Pack="true" PackagePath="" />
4457
</ItemGroup>
4558
</Project>

0 commit comments

Comments
 (0)