This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch 4.8.0-beta00017-deps in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 09aea9e8d381fc160482e0094f490a7b71dc55dc Author: Shad Storhaug <[email protected]> AuthorDate: Mon Oct 14 00:29:32 2024 +0700 Lucene.Net.ICU.csproj: Added direct dependency on Newtonsoft.Json to ensure we use the same version as the patch in ICU4N.Resources --- src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj index 827d421e0..705cc8664 100644 --- a/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj +++ b/src/dotnet/Lucene.Net.ICU/Lucene.Net.ICU.csproj @@ -72,6 +72,8 @@ <ItemGroup> <PackageReference Include="ICU4N" Version="$(ICU4NPackageVersion)" /> + <!-- This is a transitive dependency of ICU4N.Resources. We need a direct reference to ensure the version matches other dependencies.--> + <PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonPackageVersion)" /> </ItemGroup> <ItemGroup>
