From 735373b5c5d63dd58d6abc69e5dc9199f4ad8dde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 04:04:54 +0000 Subject: [PATCH 1/2] Bump AutoMapper from 13.0.1 to 16.1.1 --- updated-dependencies: - dependency-name: AutoMapper dependency-version: 16.1.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- 2LCS/2LCS.csproj | 2 +- 2LCS/App.config | 68 ++++++++++++++++++++++++------------------------ 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/2LCS/2LCS.csproj b/2LCS/2LCS.csproj index bb28dd6..bd0b248 100644 --- a/2LCS/2LCS.csproj +++ b/2LCS/2LCS.csproj @@ -91,7 +91,7 @@ - + 33.0.1 diff --git a/2LCS/App.config b/2LCS/App.config index f0507fe..efdd526 100644 --- a/2LCS/App.config +++ b/2LCS/App.config @@ -1,14 +1,14 @@ - - - - -
- - - - - - + + + + +
+ + + + + + @@ -70,26 +70,26 @@ False - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + From 81aff7f58c6a3a8411539c0fd11448b8c349c3dc Mon Sep 17 00:00:00 2001 From: Florian Hopfner Date: Sat, 14 Mar 2026 18:29:34 +0100 Subject: [PATCH 2/2] make MapperConfiguration instantiation compatible with version 16.1.1 of AutoMapper --- 2LCS/AssetLibrary/AssetLibrarySearch.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/2LCS/AssetLibrary/AssetLibrarySearch.cs b/2LCS/AssetLibrary/AssetLibrarySearch.cs index 451edfb..e098931 100644 --- a/2LCS/AssetLibrary/AssetLibrarySearch.cs +++ b/2LCS/AssetLibrary/AssetLibrarySearch.cs @@ -1,6 +1,7 @@ using AutoMapper; using CsvHelper; using LCS.JsonObjects; +using Microsoft.Extensions.Logging.Abstractions; using System; using System.Collections.Generic; using System.Data; @@ -37,7 +38,7 @@ private void search_Click(object sender, EventArgs e) var assetVersionsForExportList = new List(); var config = new MapperConfiguration( - cfg => cfg.CreateMap()); + cfg => cfg.CreateMap(), NullLoggerFactory.Instance); var mapper = config.CreateMapper(); // linear with progress, only assets in date range