在PowerShell中还有其他DSL的例子吗?

Emi*_*ggi 8 powershell dsl abstraction

PowerBoots是一个非常有用的DSL示例,它利用脚本块来创建GUI:

Boots {
   StackPanel {
      Button "A bed of clams"
      Button "A coalition of cheetas"
      Button "A gulp of swallows"
   }
}

我知道如果没有指定目标域,这个问题看起来很一般.所以我要更具体:

你知道在PowerShell中实现一种DSL的任何其他项目吗?

bee*_*ino 10

你还应该看看psake:https://github.com/JamesKovacs/psake

另外,我刚发现Pester,这是RSpec的PoSh答案:https://github.com/pester/Pester