Skip to content

Commit bea5ea2

Browse files
committed
Starting to remove unused stuff
1 parent 1b65801 commit bea5ea2

12 files changed

Lines changed: 14 additions & 474 deletions

File tree

File renamed without changes.

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let summary = "Async extensions for F#"
3939
let description = "Async extensions for F#"
4040

4141
// List of author names (for NuGet package)
42-
let authors = [ "Thomas Petricek"; "David Thomas"; "Ryan Riley"; "Steffen Forkmann" ]
42+
let authors = [ "Tomasz Petricek"; "David Thomas"; "Ryan Riley"; "Steffen Forkmann" ]
4343

4444
// Tags for your project (for NuGet package)
4545
let tags = "F#, async, fsharpx"

docs/content/terminology.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Terminology
2-
====
2+
===========
33

44
Terminology is frequently a source of confusion. Often times, terms have different
55
meanings depending on the context, different terms are used to refer to the same

paket.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
NUGET
22
remote: https://nuget.org/api/v2
33
specs:
4-
FAKE (3.17.14)
5-
FSharp.Compiler.Service (0.0.85)
6-
FSharp.Formatting (2.7.4)
4+
FAKE (3.26.1)
5+
FSharp.Compiler.Service (0.0.86)
6+
FSharp.Formatting (2.7.5)
77
FSharp.Compiler.Service (>= 0.0.82)
88
FSharpVSPowerTools.Core (>= 1.7.0)
99
FSharpVSPowerTools.Core (1.7.0)
@@ -16,14 +16,14 @@ NUGET
1616
Microsoft.Bcl.Build (>= 1.0.14)
1717
NUnit (2.6.4)
1818
NUnit.Runners (2.6.4)
19-
Octokit (0.7.2)
19+
Octokit (0.8.0)
2020
Microsoft.Net.Http
21-
SourceLink.Fake (0.4.2)
21+
SourceLink.Fake (0.5.0)
2222
GITHUB
2323
remote: fsharp/FAKE
2424
specs:
25-
modules/Octokit/Octokit.fsx (585c008b4cfce177b0114f6749904e05a471508f)
25+
modules/Octokit/Octokit.fsx (60e49f7c915a8134a5f07ca408249e4bd7cc4a63)
2626
Octokit
2727
remote: fsprojects/FSharpx.Collections
2828
specs:
29-
src/FSharpx.Collections/CircularBuffer.fs (259ad697b43d12a2bdc3aedb3f7ea3d0e46157f7)
29+
src/FSharpx.Collections/CircularBuffer.fs (9dbd028e3dcd295b68b9401f69ab71a727ad2260)

src/AsyncSeq/AssemblyInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace System
1+
namespace System
22
open System.Reflection
33

44
[<assembly: AssemblyTitleAttribute("AsyncSeq")>]

src/AsyncSeq/Async.IO.fs

Lines changed: 0 additions & 97 deletions
This file was deleted.

src/AsyncSeq/AsyncSeq.fsproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -79,8 +79,6 @@
7979
<Compile Include="AsyncStreamReader.fsi" />
8080
<Compile Include="AsyncStreamReader.fs" />
8181
<Compile Include="AsyncSeq.fs" />
82-
<Compile Include="AsyncStream.fs" />
83-
<Compile Include="Async.IO.fs" />
8482
<None Include="paket.references" />
8583
<None Include="paket.template" />
8684
</ItemGroup>

src/AsyncSeq/AsyncStream.fs

Lines changed: 0 additions & 175 deletions
This file was deleted.

src/AsyncSeq/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
type project
22
owners
3-
Thomas Petricek, David Thomas, Ryan Riley, Steffen Forkmann
3+
Tomasz Petricek, David Thomas, Ryan Riley, Steffen Forkmann
44
authors
5-
Thomas Petricek, David Thomas, Ryan Riley, Steffen Forkmann
5+
Tomasz Petricek, David Thomas, Ryan Riley, Steffen Forkmann
66
projectUrl
77
http://fsprojects.github.io/AsyncSeq/
88
iconUrl

tests/AsyncSeq.Tests/AsyncSeq.Tests.fsproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -57,9 +57,7 @@
5757
<Import Project="$(FSharpTargetsPath)" />
5858
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
5959
<ItemGroup>
60-
<Compile Include="AsyncTest.fs" />
6160
<Compile Include="AsyncSeqTests.fs" />
62-
<Compile Include="AsyncStreamTests.fs" />
6361
<None Include="paket.references" />
6462
</ItemGroup>
6563
<ItemGroup>

0 commit comments

Comments
 (0)