From ffb1fa4dde21b3b5d6bb5c93d57df52a68c0440c Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Thu, 20 Jul 2023 03:26:39 -0500 Subject: [PATCH] Exclude vstest licenses directory from VMR (#17023) --- src/VirtualMonoRepo/source-mappings.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/VirtualMonoRepo/source-mappings.json b/src/VirtualMonoRepo/source-mappings.json index e317999d89a9..84f87fa600b5 100644 --- a/src/VirtualMonoRepo/source-mappings.json +++ b/src/VirtualMonoRepo/source-mappings.json @@ -171,7 +171,12 @@ }, { "name": "vstest", - "defaultRemote": "https://github.com/microsoft/vstest" + "defaultRemote": "https://github.com/microsoft/vstest", + "exclude": [ + // These license files are for the nuget packages that vstest produces which include additional files built in + // different repositories and have different licensing. See https://github.com/microsoft/vstest/issues/4574 + "src/package/licenses/**/*" + ] }, { "name": "xdt",