Skip to content

Commit

Permalink
Merge pull request #140 from pfpack/release/v3.0-preview.1
Browse files Browse the repository at this point in the history
release/v3.0-preview.1
  • Loading branch information
andreise authored Sep 24, 2024
2 parents 0738528 + 07187f3 commit 88b25d7
Show file tree
Hide file tree
Showing 159 changed files with 77 additions and 7,414 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
# Create Local NuGet Source
Expand Down Expand Up @@ -74,23 +72,6 @@ jobs:
- name: Test Optional.Tests
run: dotnet test ./src/*/*/Optional.Tests.csproj --no-restore -c Release

# TaggedUnion

- name: Restore TaggedUnion
run: dotnet restore ./src/*/*/TaggedUnion.csproj

- name: Build TaggedUnion
run: dotnet build ./src/*/*/TaggedUnion.csproj --no-restore -c Release

- name: Pack TaggedUnion
run: dotnet pack ./src/*/*/TaggedUnion.csproj --no-restore -o ~/nuget -c Release

- name: Restore TaggedUnion.Tests.Old
run: dotnet restore ./src/*/*/TaggedUnion.Tests.Old.csproj

- name: Test TaggedUnion.Tests.Old
run: dotnet test ./src/*/*/TaggedUnion.Tests.Old.csproj --no-restore -c Release

# Result

- name: Restore Result
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ node_modules/
*.dsw
*.dsp

# Visual Studio 6 technical files
# Visual Studio 6 technical files
*.ncb
*.aps

Expand Down
15 changes: 9 additions & 6 deletions src/core-taggeds-failure/Failure.Tests/Failure.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -16,12 +16,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="DeepEqual" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="DeepEqual" Version="5.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="3.1.0" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions src/core-taggeds-failure/Failure/Failure.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -18,7 +18,7 @@
<Description>PrimeFuncPack Core.Failure is a core library for .NET consisting of Failure type targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.Failure</AssemblyName>
<Version>2.2.0</Version>
<Version>3.0-preview.1</Version>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Unit" Version="2.2.1" />
<PackageReference Include="PrimeFuncPack.Core.Unit" Version="3.0.0" />
</ItemGroup>

</Project>

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 88b25d7

Please sign in to comment.