Skip to content

Commit 1724f8c

Browse files
committed
Add net9.0 TFM needed for PersistedAssemblyBuilder
1 parent 3fefce3 commit 1724f8c

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Debugging symbols are available in symbol packages in the AppVeyor build artifac
1616

1717
## License
1818

19-
Castle Core is © 2004-2022 Castle Project. It is free software, and may be redistributed under the terms of the [Apache 2.0](http://opensource.org/licenses/Apache-2.0) license.
19+
Castle Core is © 2004-2025 Castle Project. It is free software, and may be redistributed under the terms of the [Apache 2.0](http://opensource.org/licenses/Apache-2.0) license.
2020

2121
## Contributing
2222

@@ -50,13 +50,13 @@ build.cmd
5050

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

53-
Symbol | .NET 4.6.2 | .NET Standard 2.0 | .NET 8
54-
----------------------------------- | ------------------ | ----------------- | ------------------
55-
`FEATURE_APPDOMAIN` | :white_check_mark: | :no_entry_sign: | :no_entry_sign:
56-
`FEATURE_ASSEMBLYBUILDER_SAVE` | :white_check_mark: | :no_entry_sign: | :no_entry_sign:
57-
`FEATURE_BYREFLIKE` | :no_entry_sign: | :no_entry_sign: | :white_check_mark:
58-
`FEATURE_SERIALIZATION` | :white_check_mark: | :no_entry_sign: | :no_entry_sign:
59-
`FEATURE_SYSTEM_CONFIGURATION` | :white_check_mark: | :no_entry_sign: | :no_entry_sign:
53+
Symbol | .NET 4.6.2 | .NET Standard 2.0 | .NET 8 | .NET 9
54+
----------------------------------- | ------------------ | ----------------- | ------------------ | ------------------
55+
`FEATURE_APPDOMAIN` | :white_check_mark: | :no_entry_sign: | :no_entry_sign: | :no_entry_sign:
56+
`FEATURE_ASSEMBLYBUILDER_SAVE` | :white_check_mark: | :no_entry_sign: | :no_entry_sign: | :no_entry_sign:
57+
`FEATURE_BYREFLIKE` | :no_entry_sign: | :no_entry_sign: | :white_check_mark: | :white_check_mark:
58+
`FEATURE_SERIALIZATION` | :white_check_mark: | :no_entry_sign: | :no_entry_sign: | :no_entry_sign:
59+
`FEATURE_SYSTEM_CONFIGURATION` | :white_check_mark: | :no_entry_sign: | :no_entry_sign: | :no_entry_sign:
6060

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

src/Castle.Core.Tests.WeakNamed/Castle.Core.Tests.WeakNamed.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net9.0;net8.0;net462</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Core.Tests/Castle.Core.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net9.0;net8.0;net462</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Core/Castle.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net462;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Services.Logging.EventLogIntegration/Castle.Services.Logging.EventLogIntegration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net462;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Services.Logging.NLogIntegration/Castle.Services.Logging.NLogIntegration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net462;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Services.Logging.SerilogIntegration/Castle.Services.Logging.SerilogIntegration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net462;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

src/Castle.Services.Logging.log4netIntegration/Castle.Services.Logging.log4netIntegration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\buildscripts\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFrameworks>net8.0;net462;netstandard2.0</TargetFrameworks>
6+
<TargetFrameworks>net8.0;net9.0;net462;netstandard2.0</TargetFrameworks>
77
</PropertyGroup>
88

99
<PropertyGroup>

0 commit comments

Comments
 (0)