热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何从bat文件中使用aspnet_compiler?-HowcanIuseaspnet_compilerfromabatfile?

Ineedtoexecuteaspnet_compilerfromabatfilethatImaintaintoautomatethepublishingofaAS

I need to execute aspnet_compiler from a bat file that I maintain to automate the publishing of a ASP.NET application from within CruiseControl.NET.

我需要从我维护的bat文件中执行aspnet_compiler,以自动从CruiseControl.NET中发布ASP.NET应用程序。

aspnet_compiler runs fine if I manually open the Visual Studio Command Prompt, but doesn't run if I open a normal cmd.exe.

如果我手动打开Visual Studio命令提示符,aspnet_compiler运行正常,但如果我打开正常的cmd.exe则不运行。

What steps should I take to make aspnet_compiler accessible through a normal cmd.exe?

我应该采取哪些步骤才能通过普通的cmd.exe访问aspnet_compiler?

2 个解决方案

#1


For Visual Studio 2008:

对于Visual Studio 2008:

call "%VS90COMNTOOLS%\vsvars32.bat"

#2


Near the top of your batch file:

靠近批处理文件的顶部:

CALL "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat"

This will set up your path correctly.

这将正确设置您的路径。

The installed location of VS.NET on your computer might be different. To find the correct path, select 'Properties' for the "Visual Studio nnn Command Prompt" shortcut.

VS.NET在您的计算机上的安装位置可能会有所不同。要找到正确的路径,请为“Visual Studio nnn命令提示符”快捷方式选择“属性”。

Or you can just include the complete path to aspnet_compiler in your batch file.

或者您可以在批处理文件中包含aspnet_compiler的完整路径。


推荐阅读
author-avatar
佩政哲维99
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有