From bc88d2f7c8ef46f6fac49dcd0a59df91af8ee0b5 Mon Sep 17 00:00:00 2001 From: erwan-joly Date: Fri, 24 Apr 2026 15:24:04 +1200 Subject: [PATCH] chore: support local NuGet source via NOSCORE_LOCAL_PACKAGES env var MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a Directory.Build.props PropertyGroup that sets RestoreAdditionalProjectSources from the env var when defined. CI and fresh clones without the env var are unaffected — the property group is simply skipped. Co-Authored-By: Claude Opus 4.7 (1M context) --- Directory.Build.props | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Directory.Build.props diff --git a/Directory.Build.props b/Directory.Build.props new file mode 100644 index 0000000..c985bc8 --- /dev/null +++ b/Directory.Build.props @@ -0,0 +1,5 @@ + + + $(RestoreAdditionalProjectSources);$(NOSCORE_LOCAL_PACKAGES) + +