Last active
October 4, 2015 10:47
-
-
Save DanTup/2623209 to your computer and use it in GitHub Desktop.
Output Visual Studio project references for yuml.me
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-ProjectReferences | |
{ | |
param( | |
[Parameter(Mandatory)] | |
[string]$rootFolder, | |
[string[]]$excludeProjectsContaining | |
) | |
dir $rootFolder -Filter *.csproj -Recurse | | |
# Exclude any files matching our rules | |
where { $excludeProjectsContaining -notlike "*$($_.BaseName)*" } | | |
Select-References | |
} | |
function Select-References | |
{ | |
param( | |
[Parameter(ValueFromPipeline, Mandatory)] | |
[System.IO.FileInfo]$project, | |
[string[]]$excludeProjectsContaining | |
) | |
process | |
{ | |
$projectName = $_.BaseName | |
[xml]$projectXml = Get-Content $_.FullName | |
$ns = @{ defaultNamespace = "http://schemas.microsoft.com/developer/msbuild/2003" } | |
$projectXml | | |
# Find the references xml nodes | |
Select-Xml '//defaultNamespace:ProjectReference/defaultNamespace:Name' -Namespace $ns | | |
# Get the node values | |
foreach { $_.node.InnerText } | | |
# Exclude any references pointing to projects that match our rules | |
where { $excludeProjectsContaining -notlike "*$_*" } | | |
# Output in yuml.me format | |
foreach { "[" + $projectName + "] -> [" + $_ + "]" } | |
} | |
} | |
$excludedProjects = "Test1", "Test2" | |
Get-ProjectReferences "C:\Users\DanTup\Documents\MyProject" -excludeProjectsContaining $excludedProjects | Out-File "C:\Users\DanTup\Documents\MyProject\References.txt" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Paste the output into yuml.me, and get something like this:
http://yuml.me/4f30e632