翻訳と辞書
Words near each other
・ Psalm 6
・ Psalm 60
・ Psalm 61
・ Psalm 62
・ Psalm 63
・ Psalm 64
・ Psalm 65
・ Psalm 66
・ Psalm 67
・ Psalm 68
・ Psairoptera angustata
・ Psairoptera bimaculata
・ Psairoptera biumbrata
・ Psairoptera similis
・ Psairoptera skinneri
Psake
・ Psakhara
・ Psakoudia
・ Psalacantha
・ Psale
・ Psalidocyon
・ Psalidognathus
・ Psalidognathus friendi
・ Psalidognathus modestus
・ Psalidojapyx
・ Psalidomyrmex
・ Psalidopus
・ Psalidostetha banksiae
・ Psaliodes
・ Psalis


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Psake : ウィキペディア英語版
Psake

psake is a domain-specific language and build automation tool written in PowerShell to create builds using a dependency pattern similar to Rake or MSBuild. It dramatically simplifies the build language as compared to MSBuild scripting.〔ASP.NET - Topshelf and Katana: A Unified Web and Service Architecture ; MSDN Magazine June 2014 ; https://msdn.microsoft.com/en-us/magazine/dn745865.aspx〕
A build script consists of Tasks. Each Task is a function that can define dependencies on other Task functions.
The following is an example psake script:

Task default -Depends Build
Task Build -Depends Init,Clean,Compile
Task Compile -Depends Clean, Init
Task Clean -Depends Init
Task Init

psake executes the Task functions and enforces the dependencies between tasks. Since psake is written in a real programming language and not XML, you have a lot more freedom and flexibility in your build scripts. You can use all the features of PowerShell and the .NET Framework within your build.
The output of running psake on the script above is shown below:

PS > .\psake.ps1 default.ps1
Executing task: Init
init
Executing task: Clean
clean
Executing task: Compile
compile
Executing task: Build
compile
Build Succeeded!
----------------------------------------------------------------------
Build Time Report
----------------------------------------------------------------------
Name Duration
---- --------
Init 00:00:00.0140878
Clean 00:00:00.0113634
Compile 00:00:00.0334894
Build 00:00:00.1288015
Total: 00:00:00.4693739

== History ==
May 2008 - psake originally written by (James Kovacs ) as a PowerShell V1 script file
May 2009 - psake re-written as a PowerShell V2 module by Jorge Matos

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Psake」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.