设置 PSake

发布于 2024-08-08 15:32:59 字数 75 浏览 3 评论 0原文

有人知道或有我如何设置 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 技术交流群。

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

发布评论

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

评论(1

空袭的梦i 2024-08-15 15:32:59

此处下载。以下是其使用的一些示例:

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 中。然后像这样导入它:

Import-Module 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:

Import-Module PSake

Define a "properties" hashtable and then start using its exported commands like Task in your build scripts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文