I need to write NuGet package install.ps1 script that will copy native dll files to output directory, but I can't find the way to get the output folder path.
I think the solution is to use something like the following:
$solutionDir = [System.IO.Path]::GetDirectoryName($dte.Solution.FullName) + "\"
How can I get the output directory path through PowerShell?