如何将 Web 配置资源目录路径与已解析的主目录路径连接起来。在 Octopus 中,resolve-path 为我提供了正确的目录路径,但我无法将该路径与另一个目录连接起来。我正在使用以下代码,请指导。
$webConfigResources = (resolve-path .)
$webConfigResources += "\ResourcesConfiguration.config"
$doc = (gc $webConfigResources) -as [xml]
$doc.SelectSingleNode('//resourcesConfigSection/resources/@baseDirectory').'#text' =
$doc.Save($webConfigResources)