File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ PublishScripts/
158
158
159
159
# NuGet Packages
160
160
* .nupkg
161
+ * .snupkg
161
162
# The packages folder can be ignored because of Package Restore
162
163
** /packages /*
163
164
# except build/, which is used as an MSBuild target.
Original file line number Diff line number Diff line change @@ -233,9 +233,9 @@ UpdateDependencyVersions $ReactiveDomainTestingNuspec $ReactiveDomainTestingProj
233
233
Write-Host " Packing reactivedomain nuget packages"
234
234
$versionInfo = (Get-Item $ReactiveDomainDll ).VersionInfo
235
235
$versionString = $versionInfo.FileMajorPart.ToString () + " ." + $versionInfo.FileMinorPart.ToString () + " ." + $versionInfo.FileBuildPart.ToString ()
236
- & $nuget pack $ReactiveDomainNuspec - Version $versionString
237
- & $nuget pack $ReactiveDomainPolicyNuspec - Version $versionString
238
- & $nuget pack $ReactiveDomainTestingNuspec - Version $versionString
236
+ & $nuget pack $ReactiveDomainNuspec - Version $versionString - Symbols - SymbolPackageFormat snupkg
237
+ & $nuget pack $ReactiveDomainPolicyNuspec - Version $versionString - Symbols - SymbolPackageFormat snupkg
238
+ & $nuget pack $ReactiveDomainTestingNuspec - Version $versionString - Symbols - SymbolPackageFormat snupkg
239
239
240
240
# *******************************************************************************************************************************
241
241
You can’t perform that action at this time.
0 commit comments