如何从命令行自动“运行asp.net网站”?

前端之家收集整理的这篇文章主要介绍了如何从命令行自动“运行asp.net网站”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在,我执行以下手动步骤在我的PC上运行ASP.NET网站:

>打开Visual Studio及其中的项目
>按Ctrl F5,其中:

>构建解决方
>运行IIS快递
>打开浏览器

如何编写一个同样的东西的批处理文件?最后一步(打开浏览器)是可选的,但至少我需要构建项目并在IIS express上启动它(或者在项目文件中配置的任何内容).

解决方法

从visual studio命令行,您可以执行以下操作:
devenv "C:\path\FooSolution.sln" /run

MSDN Devenv Command Line Switches Reference

将这一切都包装成一个批处理文件(假设VS 2012)它将成为:

call "C:\Program Files\Microsoft Visual Studio 11.0\Common7\Tools\VsDevCmd.bat" 
devenv "C:\path\FooSolution.sln" /Run

更新

要使用IIS Express在Visual Studio外部运行,您将使用以下命令:

msbuild.exe "C:\path\FooSolution.sln" 
iisexpress /path:c:\path\fooapp\ /port:666
start "" http://localhost:666

请注意,msbuild和iisexpress命令有许多配置选项.您需要定制它们以满足您的需求.

Running IIS Express from the Command Line

原文链接:https://www.f2er.com/aspnet/251714.html

猜你在找的asp.Net相关文章