From 0a48035c3c62b5bb971f05d2aa6de645d4166ee7 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 12 May 2026 22:55:44 +0000 Subject: [PATCH] fix(api-dto): import Dto.Shared.projitems so the package actually packs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mass-release.yml stopped on api-dto with NU5026: The file '.../Codout.Framework.Api.Dto/bin/Release/netstandard2.1/ Codout.Framework.Api.Dto.dll' to be packed was not found on disk. Root cause: Codout.Framework.Api.Dto/ contains only the .csproj — no .cs files anywhere. The shared types (Dto, IDto, EntityDto, IEntityDto) live in Codout.Framework.Dto.Shared/ and are pulled into consumer csprojs via a Shared Project Import. Codout.Framework .Application and Codout.Framework.Api.Client both do this: Codout.Framework.Api.Dto.csproj never had that line. Build produced no assembly, and pack had nothing to package. This fix adds the same Import line. No version bump: the broken 6.3.0 was never produced (pack failed), so the version slot is still free. https://claude.ai/code/session_015jxScBEvdKkRwGvJTgK5Py --- Codout.Framework.Api.Dto/Codout.Framework.Api.Dto.csproj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Codout.Framework.Api.Dto/Codout.Framework.Api.Dto.csproj b/Codout.Framework.Api.Dto/Codout.Framework.Api.Dto.csproj index ccda5c7..78581f9 100644 --- a/Codout.Framework.Api.Dto/Codout.Framework.Api.Dto.csproj +++ b/Codout.Framework.Api.Dto/Codout.Framework.Api.Dto.csproj @@ -14,4 +14,9 @@ + + +