有没有办法根据子属性定位节点?或删除匹配节点的父节点?
我需要运行 web.config 转换以删除以下第二个 <dependentAssembly> :
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<!-- Don't want to delete this one -->
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
<!-- This is the one I want to delete -->
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Enterprise.AspNetHelper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<codeBase version="11.0.0.0" href="file:///C:/Program%20Files%20(x86)/Microsoft%20Visual%20Studio%2011.0/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.Enterprise.AspNetHelper.DLL"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
查找 <assemblyIdentity> 很容易,但我需要删除父 <dependentAssembly>(和 <codeBase>)。如果有一个 "xdt:Transform="RemoveParent" 这可以解决问题,但 AFAIK 没有。
或者,如果我可以在 <dependentAssembly> 上使用一个定位器来匹配孩子,那么它也可以工作。