TFS_ANTIGUO/SIGPC/ProyectoSIGPC/packages/EnterpriseLibrary.Data.6.0.1304.0/tools/Utils.psm1
kledezma 7fdadc4709 KLB
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C519
2021-01-22 15:05:35 +00:00

76 lines
4.6 KiB
PowerShell
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function Add-ToolFolder([System.String] $folder)
{
$flattenedValue = Get-ExtenderPropertyValue
$allFolders = New-Object "System.Collections.Generic.List``1[System.String]"
if($flattenedValue.Length -gt 0)
{
$allFolders.AddRange($flattenedValue.Split(';'))
}
if( -not $allFolders.Contains($folder) )
{
$allFolders.Add($folder)
$flattenedValue = [System.String]::Join(';', $allFolders.ToArray())
Set-ExtenderPropertyValue($flattenedValue)
}
}
function Remove-ToolFolder([System.String] $folder)
{
$flattenedValue = Get-ExtenderPropertyValue
$allFolders = New-Object "System.Collections.Generic.List``1[System.String]"
if($flattenedValue.Length -gt 0)
{
$allFolders.AddRange($flattenedValue.Split(';'))
}
if( $allFolders.Remove($folder) )
{
$flattenedValue = [System.String]::Join(';', $allFolders.ToArray())
Set-ExtenderPropertyValue($flattenedValue)
}
}
function Get-ExtenderPropertyValue
{
if( $dte.Solution.Globals.VariableExists("EnterpriseLibraryConfigurationToolBinariesPathV6") -and $dte.Solution.Globals.VariablePersists("EnterpriseLibraryConfigurationToolBinariesPathV6") )
{
return $dte.Solution.Globals.VariableValue("EnterpriseLibraryConfigurationToolBinariesPathV6")
}
return ""
}
function Set-ExtenderPropertyValue([System.String] $value)
{
if( [System.String]::IsNullOrWhiteSpace($value) )
{
if( $dte.Solution.Globals.VariableExists("EnterpriseLibraryConfigurationToolBinariesPathV6") )
{
$dte.Solution.Globals.VariablePersists("EnterpriseLibraryConfigurationToolBinariesPathV6") = $False
}
}
else
{
$dte.Solution.Globals.VariableValue("EnterpriseLibraryConfigurationToolBinariesPathV6") = $value
$dte.Solution.Globals.VariablePersists("EnterpriseLibraryConfigurationToolBinariesPathV6") = $True
}
}
function Get-RelativePath([System.String] $basePath, [System.String] $targetPath)
{
# not a general purpose relative path calculation algorithm
return ($targetPath.Substring($basePath.Length)).TrimStart([System.Io.Path]::DirectorySeparatorChar)
}
function Cleanup
{
}