diff --git a/build/UpdateManifestJsonForSbom.ps1 b/build/UpdateManifestJsonForSbom.ps1
deleted file mode 100644
index 111a76396..000000000
--- a/build/UpdateManifestJsonForSbom.ps1
+++ /dev/null
@@ -1,29 +0,0 @@
-# Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information.
-
-# This updates the provided manifest JSON with the SBOM metadata file. The manifest JSON is used to create the .vsman file for VS insertions.
-
-param ([Parameter(Mandatory=$true)] [String] $manifestJsonPath, [Parameter(Mandatory=$true)] [String] $sbomMetadataPath)
-
-$ErrorActionPreference = 'Stop'
-
-Write-Host 'Inputs:'
-Write-Host "manifestJsonPath: $manifestJsonPath"
-Write-Host "sbomMetadataPath: $sbomMetadataPath"
-
-$manifestJson = Get-Content $manifestJsonPath | ConvertFrom-Json
-$vsixPackageName = [IO.Path]::GetFileNameWithoutExtension($manifestJson.packages[0].payloads[0].fileName)
-$newSbomFileName = "$($vsixPackageName)_sbom.json"
-# https://stackoverflow.com/a/48601321/294804
-$sbomPackageObject = [PSCustomObject]@{
- 'fileName' = $newSbomFileName
- 'size' = (Get-Item $sbomMetadataPath).Length
-}
-$manifestJson.packages[0].payloads += $sbomPackageObject
-$manifestJson | ConvertTo-Json -Depth 5 | Set-Content $manifestJsonPath
-
-$destinationDir = [IO.Path]::GetDirectoryName($manifestJsonPath)
-$newSbomMetadataPath = "$destinationDir\$newSbomFileName"
-Copy-Item -Path $sbomMetadataPath -Destination $newSbomMetadataPath
-
-Write-Host 'Saved Output:'
-Write-Host "newSbomMetadataPath: $newSbomMetadataPath"
\ No newline at end of file
diff --git a/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj b/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj
index 13a946520..672dc16b4 100644
--- a/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj
+++ b/setup/Swix/Microsoft.NuGet.Build.Tasks.Setup/Microsoft.NuGet.Build.Tasks.Setup.csproj
@@ -21,9 +21,4 @@
-
-
-
-
-