8

有没有办法在 NAnt 构建期间提示用户输入?我想执行一个需要密码的命令,但我不想将密码放入构建脚本中。

4

4 回答 4

8

我现在正在使用脚本,但我很想知道是否有可用的预构建方法。非常感谢 sundar 的 ForegroundColor 技巧。

我不确定您是使用 Project.Log 还是直接访问 Console.WriteLine() 是否重要,是否有任何 NAnt 忍者想教育我?

这是脚本和使用它的示例目标:

<target name="input">
    <script language="C#" prefix="password" >
        <code><![CDATA[
            [Function("ask")]
            public string AskPassword(string prompt) {
                Project.Log(Level.Info, prompt);
                ConsoleColor oldColor = Console.ForegroundColor;
                Console.ForegroundColor = Console.BackgroundColor;
                try
                {
                    return Console.ReadLine();
                }
                finally
                {
                    Console.ForegroundColor = oldColor;
                }
            }
        ]]></code>
    </script>

    <echo message="Password is ${password::ask('What is the password?')}"/>
</target>
于 2008-11-17T23:00:36.010 回答
6

我多次使用的解决方案是拥有一个本地配置文件,其中包含每个开发人员特定的密码、连接字符串等内容。NAnt 构建脚本将在构建时包含这些设置。

版本控制系统中不存在本地配置文件,因此不会暴露密码。开发人员第一次检查代码库并尝试构建时,他必须创建此配置文件。为了方便他,可以有一个可用的模板文件,例如 my.config.template,其中包含所有可以自定义的属性。

于 2008-11-17T22:20:30.723 回答
4

试试这个 :

<script language="C#" prefix="test" >
          <code>
            <![CDATA[
              [Function("get-password")]
              public static string GetPassword(  ) {
                  Console.WriteLine("Please enter the password");
                  ConsoleColor oldForegroundColor = Console.ForegroundColor;           
             Console.ForegroundColor = Console.BackgroundColor;
                  string password = Console.ReadLine();
             Console.ForegroundColor = oldForegroundColor;
        return password;
              }
            ]]>
          </code>
</script>

<target name="test.password">
 <echo message='${test::get-password()}'/>
</target>

-->
于 2008-11-17T22:29:36.773 回答
4

这会在您键入密码时显示星号:

    <code><![CDATA[
        [Function("ask")]
        public string AskPassword(string prompt) {
            Project.Log(Level.Info, prompt);
            string password = "";

            // get the first character of the password
            ConsoleKeyInfo nextKey = Console.ReadKey(true);

            while (nextKey.Key != ConsoleKey.Enter)
            {
                if (nextKey.Key == ConsoleKey.Backspace)
                {
                    if (password.Length > 0)
                    {
                        password = password.Substring(0, password.Length - 1);

                        // erase the last * as well
                        Console.Write(nextKey.KeyChar);
                        Console.Write(" ");
                        Console.Write(nextKey.KeyChar);
                    }
                }
                else
                {
                    password += nextKey.KeyChar;
                    Console.Write("*");
                }

                nextKey = Console.ReadKey(true);
            }

            Console.WriteLine();

            return password;
        }
    ]]></code>
于 2010-03-30T10:58:11.683 回答