Merged PR 791220: Fix path remapping for FrontEndConfiguration.

Fix path remapping for FrontEndConfiguration.
This commit is contained in:
Lance Collins 2024-06-20 20:43:15 +00:00
Родитель c2386fa124
Коммит 58b1da4eea
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -73,8 +73,8 @@ namespace BuildXL.Utilities.Configuration.Mutable
ReleaseWorkspaceBeforeEvaluation = template.ReleaseWorkspaceBeforeEvaluation;
UnsafeOptimizedAstConversion = template.UnsafeOptimizedAstConversion;
AllowUnsafeAmbient = template.AllowUnsafeAmbient;
GenerateCgManifestForNugets = template.GenerateCgManifestForNugets;
ValidateCgManifestForNugets = template.ValidateCgManifestForNugets;
GenerateCgManifestForNugets = pathRemapper.Remap(template.GenerateCgManifestForNugets);
ValidateCgManifestForNugets = pathRemapper.Remap(template.ValidateCgManifestForNugets);
AllowMissingSpecs = template.AllowMissingSpecs;
EnableCredScan = template.EnableCredScan;
CredScanEnvironmentVariablesAllowList = new List<string>(template.CredScanEnvironmentVariablesAllowList);