Skip to content

Commit

Permalink
Merge pull request #91 from pfpack/dev
Browse files Browse the repository at this point in the history
release/v1.2.0-preview.1.0.0
  • Loading branch information
pmosk authored Sep 6, 2021
2 parents 231a2af + abdf40a commit 6167688
Show file tree
Hide file tree
Showing 287 changed files with 1,073 additions and 647 deletions.
63 changes: 0 additions & 63 deletions .gitattributes

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
include-prerelease: true

# Create Local NuGet Source

Expand Down
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
Expand Down Expand Up @@ -205,6 +206,9 @@ PublishScripts/
*.nuget.props
*.nuget.targets

# Nuget personal access tokens and Credentials
nuget.config

# Microsoft Azure Build Output
csx/
*.build.csdef
Expand Down Expand Up @@ -360,3 +364,25 @@ MigrationBackup/

# Fody - auto-generated XML schema
FodyWeavers.xsd

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
*.cab
*.msi
*.msix
*.msm
*.msp

# JetBrains Rider
.idea/
*.sln.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
<Authors>Andrei Sergeev, Pavel Moskovoy</Authors>
<Description>PrimeFuncPack: A Functional Programming Pack for .NET</Description>
<Copyright>Copyright © 2020-2021 Andrei Sergeev, Pavel Moskovoy</Copyright>
<RootNamespace>PrimeFuncPack.Core.Tests</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.Tests</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Func.Extensions\Func.Extensions.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ namespace System
public static partial class AsyncFunc
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<TResult> From<TResult>(
new ImplAsyncFunc<TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T, TResult> From<T, TResult>(
new ImplAsyncFunc<T, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, TResult> From<T1, T2, TResult>(
new ImplAsyncFunc<T1, T2, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, TResult> From<T1, T2, T3, TResult>(
new ImplAsyncFunc<T1, T2, T3, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, TResult> From<T1, T2, T3, T4, TResult>(
new ImplAsyncFunc<T1, T2, T3, T4, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, TResult> From<T1, T2, T3, T4, T5, T
new ImplAsyncFunc<T1, T2, T3, T4, T5, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, TResult> From<T1, T2, T3, T4, T
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, TResult> From<T1, T2, T3, T
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult> From<T1, T2, T
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult> From<T1, T
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult> From<
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRes
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13,
new ImplAsyncFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ namespace System
public static partial class AsyncValueFunc
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<TResult> From<TResult>(
new ImplAsyncValueFunc<TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T, TResult> From<T, TResult>(
new ImplAsyncValueFunc<T, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, TResult> From<T1, T2, TResult>(
new ImplAsyncValueFunc<T1, T2, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, TResult> From<T1, T2, T3, TResult>(
new ImplAsyncValueFunc<T1, T2, T3, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, TResult> From<T1, T2, T3, T4, TRes
new ImplAsyncValueFunc<T1, T2, T3, T4, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, TResult> From<T1, T2, T3, T4,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, TResult> From<T1, T2, T3,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, TResult> From<T1, T2,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult> From<T1,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult> From<
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRes
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ public static IAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12,
new ImplAsyncValueFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(
funcAsync ?? throw new ArgumentNullException(nameof(funcAsync)));
}
}
}
Loading

0 comments on commit 6167688

Please sign in to comment.