有没有办法使用PSAKE发布asp.net Web应用程序,就像visual studio一样?
解决方法
在Psake中,你有exec函数来运行程序.使用此任务/功能,您可以构建,编译和发布您的Web应用程序
您可以执行asp_compiler来构建项目/解决方案
Exec { aspnet_compiler.exe }
有关aspnet_compiler.exe的确切语法和参数,请参阅msdn站点
我找到了一个示例,说明如何做到这一点:
http://blog.developwithpassion.com/2008/10/30/interested-in-trading-in-your-nant-builds-a-teaser/