Skip to content

Instantly share code, notes, and snippets.

View crunchie84's full-sized avatar
🦑
Focusing

Mark van Straten crunchie84

🦑
Focusing
View GitHub Profile
@crunchie84
crunchie84 / VS References Yuml.ps1
Last active December 10, 2015 23:28 — forked from DanTup/VS References Yuml.ps1
dependecy graph yuml generator for c# projects fork from http://blog.dantup.com/2012/05/free-dependency-graph-generation-using-powershell-and-yuml Tweaked because my powershell gave some errors about missing values for Mandatory attribute and ValueFromPipeline
function Get-ProjectReferences
{
param(
[Parameter(Mandatory=$True)]
[string]$rootFolder,
[string[]]$excludeProjectsContaining
)
dir $rootFolder -Filter *.csproj -Recurse |