From 3e21575bd1e708c401637b90484eef6890013ddf Mon Sep 17 00:00:00 2001 From: KevinRansom Date: Sat, 15 Oct 2022 10:38:07 -0700 Subject: [PATCH] Turn off sbom for Microsoft.FSharp.Compiler.sln --- eng/Build.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eng/Build.ps1 b/eng/Build.ps1 index 347dce1afe8..8670b785994 100644 --- a/eng/Build.ps1 +++ b/eng/Build.ps1 @@ -497,7 +497,10 @@ try { } if ($pack) { + $properties_storage = $properties + $properties += "/p:GenerateSbom=false" BuildSolution "Microsoft.FSharp.Compiler.sln" + $properties = $properties_storage } if ($build) { VerifyAssemblyVersionsAndSymbols