在 Visual Studio 中,我需要用通配符搜索来替换不同的receiveTimeOut
属性值吗?receiveTimeOut="59:59:59"
<endpoint receiveTimeOut="10:10:20" someOtherProperty="x1" yetAnotherProperty="y1" />
<endpoint receiveTimeOut="10:50:20" someOtherProperty="x2" yetAnotherProperty="y2" />
...
<endpoint receiveTimeOut="30:50:20" someOtherProperty="x3" yetAnotherProperty="y3" />
我试过:在查找和替换对话框中使用通配符选项,receiveTimeOut="*"
但这会选择完整的行,receiveTimeOut="10:10:20" someOtherProperty="x1" yetAnotherProperty="y1" />
正如您可能已经猜到的那样,我正在编辑 WCF 服务 web.config 并且必须手动重复执行此任务。