Skip to content

Commit 593f347

Browse files
committed
Final adjustments to work with FA 8
1 parent 596012b commit 593f347

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Extends https://www.fluentassertions.com with specialized assertions for dealing with `DataSet`, `DataTable`, `DataRow` and `DataColumn`
1616

1717
> [!WARNING]
18-
> This set of extensions was extracted from Fluent Assertions 6 and is in maintenance mode. Pull Requests will still be accepted, but we will not actively work on improvements or bugs.
18+
> This set of extensions was extracted from Fluent Assertions 8 and is in maintenance mode. Pull Requests will still be accepted, but we will not actively work on improvements or bugs.
1919
2020
# Information
2121
* Uses [Semantic Versioning](https://semver.org/lang/nl/)
@@ -35,7 +35,7 @@ This package is shipped as a [NuGet package](https://www.nuget.org/packages/Flue
3535
* Visual Studio 2022 or JetBrains Rider 2021.3
3636
* Build Tools 2022 (including the Universal Windows Platform build tools).
3737
* .NET Framework 4.7 SDK
38-
* .NET 7.0 SDK installed. Check the `global.json`` for the current minimum required version.
38+
* .NET 8.0 SDK installed. Check the `global.json`` for the current minimum required version.
3939

4040
## Building
4141

Src/FluentAssertions.DataSets/FluentAssertions.DataSets.csproj

+6-4
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,18 @@
1414
</PropertyGroup>
1515

1616
<PropertyGroup Label="Package info">
17-
<Authors>Dennis Doomen;Jonathan Gilbert</Authors>
17+
<Authors>Dennis Doomen</Authors>
1818
<PackageDescription>
19-
Extensions to Fluent Assertions for dealing with DataSets and DataTables.
19+
Extensions to Fluent Assertions 8+ for dealing with DataSets and DataTables.
2020
</PackageDescription>
2121
<PackageProjectUrl>https://www.fluentassertions.com</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/fluentassertions/fluentassertions.datasets</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
24+
<PackageReadmeFile>readme.md</PackageReadmeFile>
2425
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
2526
<PackageIcon>FluentAssertions.png</PackageIcon>
26-
<PackageReleaseNotes>See https://fluentassertions.com/releases/</PackageReleaseNotes>
27-
<Copyright>Copyright Dennis Doomen 2010-$([System.DateTime]::Now.ToString(yyyy))</Copyright>
27+
<PackageReleaseNotes>https://github.com/fluentassertions/fluentassertions.datasets/releases</PackageReleaseNotes>
28+
<Copyright>Copyright 2024-$([System.DateTime]::Now.ToString(yyyy)) Xceed Software Inc., all rights reserved</Copyright>
2829
</PropertyGroup>
2930

3031
<ItemGroup Label="Internals visible to">
@@ -35,6 +36,7 @@
3536

3637
<ItemGroup Label="Package files">
3738
<None Include="..\FluentAssertions.png" Pack="true" Visible="false" PackagePath="" />
39+
<None Include="..\..\readme.md" Pack="true" Visible="false" PackagePath="" />
3840
</ItemGroup>
3941

4042
<ItemGroup Label="Analyzers">

Src/FluentAssertions.png

12.4 KB
Loading

Tests/Approval.Tests/Approval.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)