From 67f003b4b734c235f5c81d97d4ade502be9e9af9 Mon Sep 17 00:00:00 2001 From: Andy Jordan <2226434+andschwa@users.noreply.github.com> Date: Wed, 19 Jul 2023 12:31:04 -0700 Subject: [PATCH] Remove PDB files from module (#201) If desired, debug can be built locally. --- src/Microsoft.PowerShell.ConsoleGuiTools/ModuleLayout.psd1 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Microsoft.PowerShell.ConsoleGuiTools/ModuleLayout.psd1 b/src/Microsoft.PowerShell.ConsoleGuiTools/ModuleLayout.psd1 index 48c9432..b1887f8 100644 --- a/src/Microsoft.PowerShell.ConsoleGuiTools/ModuleLayout.psd1 +++ b/src/Microsoft.PowerShell.ConsoleGuiTools/ModuleLayout.psd1 @@ -2,15 +2,13 @@ RequiredBuildAssets = @{ 'Microsoft.PowerShell.ConsoleGuiTools' = @( 'publish/Microsoft.PowerShell.ConsoleGuiTools.dll', - 'publish/Microsoft.PowerShell.ConsoleGuiTools.pdb', 'publish/Microsoft.PowerShell.ConsoleGuiTools.psd1', 'publish/Terminal.Gui.dll', 'publish/NStack.dll' ) 'Microsoft.PowerShell.OutGridView.Models' = @( - 'publish/Microsoft.PowerShell.OutGridView.Models.dll', - 'publish/Microsoft.PowerShell.OutGridView.Models.pdb' + 'publish/Microsoft.PowerShell.OutGridView.Models.dll' ) }