Skip to content

Commit

Permalink
Minor documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
agc93 committed May 5, 2017
1 parent f46c009 commit 3a27e0a
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# ClickTwice
# The ultimate WPF build toolchain

## Introduction

As the name implies, ClickTwice is the missing step from the ClickOnce deployment technology. ClickTwice allows you to decouple your build and deploy steps from Visual Studio, instead integrating them with your preferred build environment. Currently, three environments are supported:

- Cake build scripts
- ScriptCs scripts
- Self-hosting (custom tool)

ClickTwice doesn't just build and publish your app: it also provides a powerful framework for pre- and post-processing your application at publish-time, allowing for a wide range of new abilities as pluggable handlers.

## Getting Started

ClickTwice is usually run by a *"host"*, a context to help control and configure ClickTwice itself. Out-of-the-box, the easiest way to get started is by using the Cake or ScriptCs host. Alternatively, you can self-host the toolchain to get more fine-tuned control over the build. Plus, since it's all just .NET, you can integrate the toolchain directly into your own applications.
19 changes: 15 additions & 4 deletions docfx/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# ClickTwice
# The ultimate WPF build toolchain

# This is the **HOMEPAGE**.
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files.
## Quick Start Notes:
1. Add images to *images* folder if the file is referencing an image.
## Introduction

As the name implies, ClickTwice is the missing step from the ClickOnce deployment technology. ClickTwice allows you to decouple your build and deploy steps from Visual Studio, instead integrating them with your preferred build environment. Currently, three environments are supported:

- Cake build scripts
- ScriptCs scripts
- Self-hosting (custom tool)

ClickTwice doesn't just build and publish your app: it also provides a powerful framework for pre- and post-processing your application at publish-time, allowing for a wide range of new abilities as pluggable handlers.

## Getting Started

ClickTwice is usually run by a *"host"*, a context to help control and configure ClickTwice itself. Out-of-the-box, the easiest way to get started is by using the Cake or ScriptCs host. Alternatively, you can self-host the toolchain to get more fine-tuned control over the build. Plus, since it's all just .NET, you can integrate the toolchain directly into your own applications.
1 change: 1 addition & 0 deletions docfx/toc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

- name: Documentation
href: doc/
homepage: doc/intro.md
- name: API Reference
href: api/
homepage: api/index.md
Empty file removed package/README.md
Empty file.
2 changes: 1 addition & 1 deletion tools/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.14.0" />
<package id="Cake" version="0.19.5" />
</packages>

0 comments on commit 3a27e0a

Please sign in to comment.