Public/Nuget/Paket/Invoke-PaketSimplify.ps1
function Invoke-PaketSimplify { [CmdletBinding()] param ( [string]$Path = "." ) begin { } process { Get-PaketDependenciesPath|ForEach-Object{ Write-Host "Paket Simplify $($_.FullName)" -f Blue Push-Location $_.directoryName dotnet paket simplify Pop-Location } } end { } } |