在批处理文件中使用 aspnet_compiler 以发布模式发布站点
我正在尝试创建一个批处理任务,该任务将以发布模式发布我的网站 但运气不佳...
我这样做的脚本是这样的:
aspnet_compiler -errorstack -nologo -fixednames -v / -p "C:\projects\mysite\COMPONENTS\sitefolder" -f -u "C:\projects\publish-mysite"
我的网站解决方案中有大约 10 个其他项目。所以我希望它们都以发布模式发布。 (该网站引用了这些项目)
请帮忙。谢谢
i am trieng to create a batch task that will publish my site in release mode
but with no luck...
my script for doing so is this:
aspnet_compiler -errorstack -nologo -fixednames -v / -p "C:\projects\mysite\COMPONENTS\sitefolder" -f -u "C:\projects\publish-mysite"
my site has about 10 other projects in the solution. so i expect them to all be published in release mode. (the site refrence those projects)
please help. thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是我的 build.bat 文件之一中的相关行
Here are the relevant lines from one of my build.bat files