vote up 2 vote down star

Is there a NAnt task that will echo out all property names and values that are currently set during a build? Something equivalent to ant's echoproperties task maybe.

flag

75% accept rate

2 Answers

vote up 5 vote down check

Try this snippet:

<project>
    <property name="foo" value="bar"/>
    <property name="fiz" value="buz"/>

    <script language="C#" prefix="util" >
        <code>
            <![CDATA[
            public static void ScriptMain(Project project) 
            {
                foreach (DictionaryEntry entry in project.Properties)
                {
                    Console.WriteLine("{0}={1}", entry.Key, entry.Value);
                }
            }
            ]]>
        </code>
    </script>
</project>

You can just save and run with nant.

And no, there isn't a task or function to do this for you already.

link|flag
That's pretty neat. Cheers. – serg10 Sep 29 '08 at 20:32
That may well be the coolest thing I've read this week! +1! – John Rudy Sep 30 '08 at 19:21
vote up 1 vote down

You can't prove a negative, but I can't find one and haven't seen one. I've traditionally rolled my own property echoes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.