Last active
October 9, 2015 13:32
-
-
Save vardars/3e2fa430bcb9ddab2336 to your computer and use it in GitHub Desktop.
Create project dependencies from solution
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
# http://blog.dantup.com/2012/05/free-dependency-graph-generation-using-powershell-and-yuml/ | |
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 + "] -> [" + $_ + "]" } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage:
$excludedProjects = "Test1", "Test2"
Get-ProjectReferences "C:\Users\DanTup\Documents\MyProject" -excludeProjectsContaining $excludedProjects | Out-File "C:\Users\DanTup\Documents\MyProject\References.txt"