From ecc07d23a8e7aa1674117726046e2396430d12c8 Mon Sep 17 00:00:00 2001 From: Dennis Beuchler Date: Fri, 30 Oct 2020 11:53:16 +0100 Subject: [PATCH] Include source in legacy symbol packages --- .build/BuildToolkit.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.build/BuildToolkit.ps1 b/.build/BuildToolkit.ps1 index 4e408da3a..8a7b4cc07 100644 --- a/.build/BuildToolkit.ps1 +++ b/.build/BuildToolkit.ps1 @@ -427,9 +427,9 @@ function Invoke-PackSdkProject($CsprojItem, [bool]$IncludeSymbols = $False) { $packargs += "--verbosity", "$env:MORYX_NUGET_VERBOSITY"; $packargs += "--no-build"; - if ($IncludeSymbols) { $packargs += "--include-symbols"; + $packargs += "--include-source"; } & $global:DotNetCli pack "$csprojFullName" @packargs