티스토리 뷰
소스를 읽을 때 알게 된 것처럼 FAKE에서도 동일하게 구현됩니다.
// build.fsx
Description "remove temp/"
Target "Clean" (fun _ ->
CleanDirs [buildDir; deployDir]
)
// ....so on
종속성 그래프는 .../fake.exe --listTargets
또는 -lt
Available targets:
- Clean - remove temp/
Depends on: []
- Build
Depends on: ["Clean"]
- Deploy
Depends on: ["Test"]
- Test
Depends on: ["Build"]
출처
https://stackoverflow.com/questions/39929989
댓글