我已经使用 msdeploy.exe 构建了我的 WCF 服务部署包,但我想在安装时为我的站点更改 IIS 中启用的协议,我该如何实现
我尝试从 myservice.setParameters.xml 进行设置,但没有成功
<?xml version="1.0" encoding="utf-8"?>
<parameters>
<setParameter name="IIS Web Application Name" value="Default
Website/myService" />
<setParameter name="EnabledProtocols" value="net.tcp" />
</parameters>
我想为我的使用 TCP 绑定的 WCF 服务构建一个单击部署批处理文件。