Types/OpenPackage/get_Nuspec.ps1

<#
.SYNOPSIS
    Gets a package's nuspec
.DESCRIPTION
    Gets the content of any `*.nuspec` files in the package
#>

[OutputType([xml])]
param()

$this.GetContent(
    $this.FileList -match '\.nuspec$'
)