Skip to content

Commit b543c11

Browse files
authored
test: run tests using .NET 4.6.2 and .NET 6.0 (#44)
1 parent bd8c75b commit b543c11

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
- name: Test
2929
run: |
3030
.\net40\Iesi.Collections.Test.exe
31-
.\net461\Iesi.Collections.Test.exe
31+
.\net462\Iesi.Collections.Test.exe
32+
.\net6.0\Iesi.Collections.Test.exe
3233
.\net8.0\Iesi.Collections.Test.exe
3334
working-directory: src\Iesi.Collections.Test\bin\Release
3435

src/Iesi.Collections.Test/Iesi.Collections.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net40;net461;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net40;net462;net6.0;net8.0</TargetFrameworks>
44
<Company>NHibernate community</Company>
55
<Description>The Unit Tests for Iesi.Collections.</Description>
66
<OutputType>exe</OutputType>

src/Iesi.Collections/Iesi.Collections.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.0;netstandard1.3;netstandard2.0;net40;net461;net6.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.0;netstandard1.3;netstandard2.0;net40;net461;net462;net6.0;net8.0</TargetFrameworks>
44
<Company>NHibernate community</Company>
55
<Summary>Additional implementations of System.Collections.Generic.ISet&lt;T&gt;.</Summary>
66
<Description>The System.Collections namespace in the .NET Framework provides a number of collection types that are extremely useful for manipulating data in memory. However, some specialized implementations of ISet are not available. Iesi.Collections 4.0 for .Net 4.0 contains the LinkedHashSet (preserves insertion order), the ReadOnlySet and the SynchronizedSet. The latter two wrap an actual set.</Description>

0 commit comments

Comments
 (0)