Skip to content

Commit 3122314

Browse files
committed
Update documentation to reflect net462 as minimum version
1 parent 931431a commit 3122314

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build.cmd
3636

3737
Compilation requires a C# 9 compiler, an up-to-date .NET Core SDK, and MSBuild 15+ (which should be included in the former).
3838

39-
Running the unit tests additionally requires the .NET Framework 4.6.1+ as well as the .NET Core 2.1 and 3.1 runtimes to be installed. (If you do not have all of those installed, you can run the tests for a specific target framework using `dotnet test -f <framework>`.)
39+
Running the unit tests additionally requires the .NET Framework 4.6.2+ as well as the .NET Core 2.1 and 3.1 runtimes to be installed. (If you do not have all of those installed, you can run the tests for a specific target framework using `dotnet test -f <framework>`.)
4040

4141
These requirements should be covered by Visual Studio 2019 and the .NET 5 SDK.
4242

@@ -60,14 +60,14 @@ For known Mono defects, check [our issue tracker](https://github.com/castleproje
6060

6161
The following conditional compilation symbols (vertical) are currently defined for each of the build configurations (horizontal):
6262

63-
Symbol | .NET 4.5 | .NET Standard 2.x
63+
Symbol | .NET 4.6.2 | .NET Standard 2.x
6464
----------------------------------- | ------------------ | ------------------
6565
`FEATURE_APPDOMAIN` | :white_check_mark: | :no_entry_sign:
6666
`FEATURE_ASSEMBLYBUILDER_SAVE` | :white_check_mark: | :no_entry_sign:
6767
`FEATURE_SERIALIZATION` | :white_check_mark: | :no_entry_sign:
6868
`FEATURE_SYSTEM_CONFIGURATION` | :white_check_mark: | :no_entry_sign:
6969
--- | |
70-
`DOTNET45` | :white_check_mark: | :no_entry_sign:
70+
`DOTNET462` | :white_check_mark: | :no_entry_sign:
7171

7272
* `FEATURE_APPDOMAIN` - enables support for features that make use of an AppDomain in the host.
7373
* `FEATURE_ASSEMBLYBUILDER_SAVE` - enabled support for saving the dynamically generated proxy assembly.

docs/dynamicproxy-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DynamicProxy differs from the proxy implementation built into the CLR which requ
99
To use Castle DynamicProxy you need the following environment:
1010

1111
* one of the following runtimes installed
12-
* .NET Framework 4.5+
12+
* .NET Framework 4.6.2+
1313
* .NET Core 2.1+
1414
* any another .NET platform that supports .NET Standard 2.0+ and runtime type generation using System.Reflection.Emit
1515
* `Castle.Core.dll` (assembly where DynamicProxy lives)

0 commit comments

Comments
 (0)