wk-j / cake-dialog

2 stars 1 forks source link
cake cake-addin cake-build

Cake.Dialog

Show input dialog

Support

Sample

#addin "nuget:?package=Cake.Dialog"

Task("Show-Input-Dialog").Does(() => {
    InputDialog(options => {
        options.Title = "Enter commit message";
        options.Text = "Update ...";
        options.OnOk = (text) => {
            Console.WriteLine(text);
        };
    });
});