Types/OpenPackage/get_ProjectFile.ps1

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

[OutputType([xml])]
param()

$this.GetContent(
    $this.FileList -match '\..+?proj$'
)