https://github.com/cake-contrib/cake.figlet
FIGlet for Cake
https://github.com/cake-contrib/cake.figlet
cake-addin cake-build figlet
Last synced: 5 days ago
JSON representation
FIGlet for Cake
- Host: GitHub
- URL: https://github.com/cake-contrib/cake.figlet
- Owner: cake-contrib
- License: mit
- Created: 2016-07-21T21:52:37.000Z (almost 9 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-19T10:03:18.000Z (over 2 years ago)
- Last Synced: 2025-04-14T22:22:30.620Z (14 days ago)
- Topics: cake-addin, cake-build, figlet
- Language: C#
- Homepage: https://cakebuild.net/extensions/cake-figlet
- Size: 145 KB
- Stars: 11
- Watchers: 6
- Forks: 9
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Cake.Figlet
Cake.Figlet adds FIGlet font support to Cake allowing superfulous Ascii art to be added
to your build scripts easily.
[](https://ci.appveyor.com/project/enkafan/cake-figlet/branch/master) [](https://www.nuget.org/packages/cake.figlet) [](https://www.codefactor.io/repository/github/cake-contrib/cake.figlet)
## Referencing
Reference the library directly in your build script via a cake addin directive:
```
#addin "Cake.Figlet"
```## Usage
```
Setup(ctx => {
Information("");
Information(Figlet("Cake.Figlet"));
});
```This will output
```
----------------------------------------
Setup
----------------------------------------
Executing custom setup action...____ _ _____ _ _ _
/ ___| __ _ | | __ ___ | ___|(_) __ _ | | ___ | |_
| | / _` || |/ / / _ \ | |_ | | / _` || | / _ \| __|
| |___ | (_| || < | __/ _ | _| | || (_| || || __/| |_
\____| \__,_||_|\_\ \___|(_)|_| |_| \__, ||_| \___| \__|
|___/```
## Thanks
Figlet code is based heavily from [Philippe Auriou's FIGlet library](https://github.com/auriou/FIGlet)