MSBuild 在 XP (IIS 5.1) 上创建虚拟目录
我们创建新开发环境的过程(获取最新版本、设置数据库、设置具有权限的 IIS 目录)环境有点复杂,我想将其自动化。
我唯一困惑的是为 WCF 服务层创建 IIS 虚拟目录。我们使用 Windows XP (IIS 5.1) 进行开发,但很快就会迁移到 Windows 7 (IIS 7)。
有人可以帮忙吗?
Our process for creating a new development (get latest, setup db, setup IIS directories with permissions) environment has got a little complicated and I want to automate it.
The only bit I am stuck on is creating an IIS Virtual Directory for the WCF service layer. We develop with windows XP (IIS 5.1) but will be moving to Windows 7 (IIS 7) soon.
Can anyone help please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XP 的 SDC 任务。这是一个示例。
然后执行 msbuild.exe CreateVDir.proj /t:Demo
其中 CreateVDir.proj 是文件的名称。
对于 IIS 7,您可以使用 MSBuild 扩展包。
另外,如果您愿意,另一个选择是 MSDeploy 这是我会做的方式它。
You can use SDC tasks for XP. Here is a sample.
Then to exeucte msbuild.exe CreateVDir.proj /t:Demo
Where CreateVDir.proj is the name of the file.
For IIS 7 you can use MSBuild Extension Pack.
Also if you're up to it, another option is MSDeploy which is the way I would do it.