Skip to content

Commit

Permalink
Merge pull request #3 from pfpack/release/v2.0.0
Browse files Browse the repository at this point in the history
release/v2.0.0
  • Loading branch information
pmosk authored Nov 26, 2021
2 parents f6cf091 + b852357 commit 5c2c88c
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Abstractions.Async is a core library for .NET consisting of IAsyncFunc asynchronous Task based functional interfaces (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.Async</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Abstractions.AsyncValue is a core library for .NET consisting of IAsyncValueFunc asynchronous ValueTask based functional interfaces (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.AsyncValue</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Abstractions.Sync is a core library for .NET consisting of IFunc synchronous functional interfaces (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.Sync</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/core-func-abs/Func.Abstractions/Func.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Abstractions is a core library for .NET consisting of functional interfaces (SAM interfaces) targeted for use in functional programming - IAsyncFunc/IAsyncValueFunc and IFunc, both asynchronous (Task and ValueTask based) and synchronous.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,9 +32,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Extensions.Async is a core library for .NET consisting of extensions for IAsyncFunc asynchronous Task based functional interface (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.Async</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Extensions.AsyncValue is a core library for .NET consisting of extensions for IAsyncValueFunc asynchronous ValueTask based functional interface (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.AsyncValue</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Extensions.Sync is a core library for .NET consisting of extensions for IFunc synchronous functional interface (SAM interface) targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.Sync</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0" />
</ItemGroup>

</Project>
14 changes: 7 additions & 7 deletions src/core-func-ext/Func.Extensions/Func.Extensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Description>PrimeFuncPack Core.Func.Extensions is a core library for .NET consisting of extensions for functional interfaces (SAM interfaces) targeted for use in functional programming - IAsyncFunc/IAsyncValueFunc and IFunc, both asynchronous (Task and ValueTask based) and synchronous.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Func.Extensions</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,12 +32,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Async" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.AsyncValue" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Sync" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Async" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.AsyncValue" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Sync" Version="2.0.0" />
</ItemGroup>

</Project>

0 comments on commit 5c2c88c

Please sign in to comment.