Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Extension methods to fluently assert the outcome of .NET tests
Fluent Assertions provides a comprehensive set of extension methods that enable developers to express the expected outcomes of TDD (Test-Driven Development) and BDD (Behavior-Driven Development) unit tests in a natural, readable style. It is compatible with .NET Standard 2.0+, .NET Framework 4.7+, and .NET 6+.

Versions 8 and beyond are free for open-source projects and non-commercial use, but commercial use requires [a paid license](https://xceed.com/products/unit-testing/fluent-assertions/).
Check out the [license page](LICENSE.md) for more information. Version 7
Check out the [license page](LICENSE) for more information. Version 7
will remain fully open-source indefinitely and receive bugfixes and other important corrections.


Expand Down
8 changes: 4 additions & 4 deletions Src/FluentAssertions/FluentAssertions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
BDD-style unit tests. Works with .NET Standard 2.0 and higher, .NET Framework 4.7 and higher and .NET 6 and higher.
Supports the unit test frameworks MSTest2, NUnit3, NUnit4, XUnit2, XUnit3, MSpec and TUnit.

IMPORTANT: This version is free for open-source projects and non-commercial use, but commercial use requires [a paid license](https://xceed.com/products/unit-testing/fluent-assertions/).
Check out the [license page](LICENSE.md) for more information.
IMPORTANT: This version is free for open-source projects and non-commercial use, but commercial use requires [a paid license](https://xceed.com/products/unit-testing/fluent-assertions/).
Check out the [license page](LICENSE) for more information.
</PackageDescription>
<PackageProjectUrl>https://xceed.com/products/unit-testing/fluent-assertions/</PackageProjectUrl>
<RepositoryUrl>https://github.com/fluentassertions/fluentassertions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>MSTest2;xUnit;NUnit;MSpec;TUnit;TDD;BDD;Fluent;netstandard;uwp</PackageTags>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>FluentAssertions.png</PackageIcon>
<PackageReleaseNotes>See https://fluentassertions.com/releases/</PackageReleaseNotes>
<Copyright>Copyright 2024-$([System.DateTime]::Now.ToString(yyyy)) Xceed Software Inc., all rights reserved</Copyright>
Expand All @@ -42,7 +42,7 @@ Check out the [license page](LICENSE.md) for more information.

<ItemGroup Label="Package files">
<None Include="..\FluentAssertions.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\..\LICENSE.md" Pack="true" PackagePath=""/>
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
<None Include="..\init.ps1" Pack="true" PackagePath="tools"/>
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ using (var innerScope = new AssertionScope())

Version 7 will remain fully open-source indefinitely and receive bugfixes and other important corrections.

Versions 8 and beyond are/will be free for open-source projects and non-commercial use, but commercial use requires a [paid license](https://xceed.com/products/unit-testing/fluent-assertions/). Check out the [license page](LICENSE.md) for more information.
Versions 8 and beyond are/will be free for open-source projects and non-commercial use, but commercial use requires a [paid license](https://xceed.com/products/unit-testing/fluent-assertions/). Check out the [license page](LICENSE) for more information.

Since Fluent Assertions 8 doesn't need any license key, there's a soft warning that is displayed for every test run. This is to remind consumers that you need a paid license for commercial use. To suppress this warning, there's a static property called `License.Accepted` that can be set to `true`. You can add the following code to your test project to automatically toggle this flag.

Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sidebar:
## 8.0.0

### License Change
Versions 8 and beyond are/will be free for open-source projects and non-commercial use, but commercial use requires a [paid license](https://xceed.com/products/unit-testing/fluent-assertions/). Check out the [license page](LICENSE.md) for more information.
Versions 8 and beyond are/will be free for open-source projects and non-commercial use, but commercial use requires a [paid license](https://xceed.com/products/unit-testing/fluent-assertions/). Check out the [license page](LICENSE) for more information.

Version 7 will remain fully open-source indefinitely and receive bugfixes and other important corrections.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<br/>
Versions 8 and beyond are free for open-source projects and non-commercial use, but commercial use requires
a [paid license](https://xceed.com/products/unit-testing/fluent-assertions/).
Check out the [license page](https://github.com/fluentassertions/fluentassertions/blob/main/LICENSE.md) for more information. Version 7
Check out the [license page](https://github.com/fluentassertions/fluentassertions/blob/main/LICENSE) for more information. Version 7
will remain fully open-source indefinitely and receive bugfixes and other important corrections.
'
feature_row:
Expand Down
Loading