From c37de7ef840e6b5c14f71d6914b6babb4ebd927e Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 30 Jul 2021 15:49:37 -0500 Subject: [PATCH] Revert "fix: include symbols in published release" This reverts commit 2e5dfd20817d012b8e0570a034d7033aaa90a773. --- ci/PublishAndZip.ps1 | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ci/PublishAndZip.ps1 b/ci/PublishAndZip.ps1 index e5607ba0..a63f7fb2 100644 --- a/ci/PublishAndZip.ps1 +++ b/ci/PublishAndZip.ps1 @@ -7,14 +7,6 @@ param ( $ErrorActionPreference = "Stop" -# Note for `IncludeSymbolsInSingleFile`: -# -# This is only required because LibGit2Sharp bundles PDB files in its nuget package. -# See the following github issues for more info: -# -# - https://github.com/dotnet/runtime/issues/3807 -# - https://github.com/libgit2/libgit2sharp.nativebinaries/issues/111 - dotnet publish src\Trash ` --output publish\$runtime ` --configuration Release ` @@ -23,7 +15,6 @@ dotnet publish src\Trash ` -p:PublishSingleFile=true ` -p:PublishTrimmed=true ` -p:IncludeNativeLibrariesForSelfExtract=true ` - -p:IncludeSymbolsInSingleFile=true ` -p:PublishReadyToRun=true New-Item -ItemType Directory -Force -Path publish\zip