From 5f09f7f4fe71e2adb54fdc181b698e110608bbfe Mon Sep 17 00:00:00 2001 From: Anatolii Grynchuk Date: Sat, 2 May 2026 03:20:53 +0300 Subject: [PATCH] chore: fix nuget package resolution for local windows builds - Add NuGet.Config with explicit globalPackagesFolder using %USERPROFILE% to prevent Docker-generated obj/ files (with /root/.nuget/packages/) from breaking Rider/local dotnet builds - Restore Microsoft.AspNetCore.OpenApi to Directory.Packages.props (was accidentally removed; required by Web project) Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- Directory.Packages.props | 2 +- NuGet.Config | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 NuGet.Config diff --git a/Directory.Packages.props b/Directory.Packages.props index d9e8dc6..86e916d 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -16,8 +16,8 @@ - + diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 0000000..46fd5b4 --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,9 @@ + + + + + + + + +