Skip to content

Instantly share code, notes, and snippets.

@dtbiedrzycki
dtbiedrzycki / Get-VSSolutionReferences.ps1
Last active April 27, 2018 07:39 — forked from jstangroome/Get-VSSolutionReferences.ps1
Get-VSSolutionReferences.ps1
#requires -version 2.0
[CmdletBinding()]
param (
[parameter(Mandatory=$true)]
[ValidateScript({ Test-Path -Path $_ -PathType Leaf })]
[string]
$Path
)
$ErrorActionPreference = 'Stop'