From 33c6c95159bf918dc68b85484d17a8adc8c60ccb Mon Sep 17 00:00:00 2001 From: Victor Derks Date: Sun, 10 Aug 2025 12:54:52 +0200 Subject: [PATCH 1/2] Add IsAotCompatible is true Allow project that use the assembly to publish their project as an AOT binary. --- CHANGELOG.md | 1 + Directory.Packages.props | 2 +- src/CharLS.Managed.csproj | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60c3ed2..98262c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - New property JpegLSDecoder.CompressedDataFormat to retrieve the compressed data format of the JPEG-LS file. JPEG-LS defines 3 formats: 1 interchange (most common) and 2 abbreviated. +- Added support for AOT compilation in .NET 8 and later. ### Changed diff --git a/Directory.Packages.props b/Directory.Packages.props index 9b663c4..772af4a 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -8,6 +8,6 @@ - + \ No newline at end of file diff --git a/src/CharLS.Managed.csproj b/src/CharLS.Managed.csproj index 2f392f6..8e30c6b 100644 --- a/src/CharLS.Managed.csproj +++ b/src/CharLS.Managed.csproj @@ -9,6 +9,7 @@ true enable CharLS.Managed + true true From a66725b707e31492b4366dc258584d21a8be21d4 Mon Sep 17 00:00:00 2001 From: Victor Derks Date: Sun, 10 Aug 2025 12:56:54 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98262c3..17d21fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - New property JpegLSDecoder.CompressedDataFormat to retrieve the compressed data format of the JPEG-LS file. JPEG-LS defines 3 formats: 1 interchange (most common) and 2 abbreviated. -- Added support for AOT compilation in .NET 8 and later. +- Added support for AOT compilation in .NET 8.0 and later. ### Changed