设置 PSake
有人知道或有我如何设置 psake 通过 powershell 运行的链接吗?
我完全不知道,也找不到什么可以告诉我的。
Does anybody know or have a link to how I set up psake to run through powershell?
I have absolutely no idea and I can find nothing to tell me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从此处下载。以下是其使用的一些示例:
http://ayende.com /Blog/archive/2009/08/30/on-psake.aspx
http://www.jameskovacs.com/blog/IntroducingPsake.aspx
2.0 版本PSake 是一个 PowerShell 模块,需要 PowerShell 2.0。将 PSake ZIP 的内容提取到 $env:Home\Documents\WindowsPowerShell\Modules\PSake 中。然后像这样导入它:
定义一个“属性”哈希表,然后开始在构建脚本中使用其导出的命令,例如任务。
Download it from here. Here are some examples of its use:
http://ayende.com/Blog/archive/2009/08/30/on-psake.aspx
http://www.jameskovacs.com/blog/IntroducingPsake.aspx
The 2.0 version of PSake is a PowerShell module which requires PowerShell 2.0. Extract the contents of the PSake ZIP into $env:Home\Documents\WindowsPowerShell\Modules\PSake. Then you import it like so:
Define a "properties" hashtable and then start using its exported commands like Task in your build scripts.