cake build使用:
Posted 小小高
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cake build使用:相关的知识,希望对你有一定的参考价值。
开源地址: https://github.com/cake-build/cake 依赖 powershell 3.0 Windows 获取引导程序: Invoke-WebRequest http://cakebuild.net/download/bootstrapper/windows -OutFile build.ps1
新建build.cake文件:
var target = Argument("target", "Default"); Task("Default") .Does(() => { MSBuild("./cakeDemo.sln"); }); RunTarget(target);
在powershell中执形:build.ps1
会 build当前解决方案下的所有项目
更多用法参考: http://cakebuild.net/
以上是关于cake build使用:的主要内容,如果未能解决你的问题,请参考以下文章
Cake.build 错误:“底层连接已关闭:发送时发生意外错误”
环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段
4. Building a Dynamic UI with Fragments 使用片段构建动态UI
如何使用模块化代码片段中的LeakCanary检测内存泄漏?