具有多个目标的架构师命令无法指定替代

时间:2018-05-05 13:21:53

标签: angular-cli angular-cli-v6

我正在转换一个库(ng-app-state)以使用角度cli,现在是v6 supports libraries(yay!)。

尝试运行某些CLI命令时,它会失败并显示如下错误:

public partial class Tsia : Form
{
    [...]

    private async Task TypeText()
    {
        await WritingAnimator("Some text");
        await WritingAnimator("This is another text");
    }

    private async Task WritingAnimator(string text)
    {
        foreach (char c in text)
        {
            TextBox1.AppendText(c.ToString());
            await Task.Delay(100);
        }
    }
}

2 个答案:

答案 0 :(得分:24)

您需要先放置库名,然后再选择选项。 E.g。

# do this
$ ng test ng-app-state --watch=true --source-map

# don't do this
$ ng test --watch=true --source-map ng-app-state

答案 1 :(得分:0)

如果您有多个应用,则可以在以下命令中提及其名称。

$mysqli = new mysqli(host, user, pass, database_name); //create new mysqli object $query = "write your own INSERT query"; $mysqli->query($query); //execute query $last_id = $mysqli->insert_id; //get the last id of the row

这里的web是角度项目中的应用。