在批处理文件中使用 aspnet_compiler 以发布模式发布站点

发布于 2024-09-18 23:40:26 字数 304 浏览 8 评论 0原文

我正在尝试创建一个批处理任务,该任务将以发布模式发布我的网站 但运气不佳...

我这样做的脚本是这样的:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若水微香 2024-09-25 23:40:26

以下是我的 build.bat 文件之一中的相关行

rem set debug to false
sed -i 's/debug="true"/debug="false"/g' ../TZ/Web.config

"%VSDIR%\Common7\IDE\devenv.exe" ..\TZ.sln /build Release
"%WINDIR%\Microsoft.Net\Framework\v2.0.50727\aspnet_compiler" -nologo -v TZ -p ..\TZ ..\compiled

Here are the relevant lines from one of my build.bat files

rem set debug to false
sed -i 's/debug="true"/debug="false"/g' ../TZ/Web.config

"%VSDIR%\Common7\IDE\devenv.exe" ..\TZ.sln /build Release
"%WINDIR%\Microsoft.Net\Framework\v2.0.50727\aspnet_compiler" -nologo -v TZ -p ..\TZ ..\compiled
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文