Is there a way to re-assign the value for the Ant property
task? Or is there another task available for that purpose?
相关问题
- How to add optgroups to a django ModelMultipleChoi
- C# How do I create code to set a form back to defa
- VBA Getting date from properties of a text file
- How to use MSbuild property in TransformXml task?
- How can I have my ant task pass or fail based on t
相关文章
- How do do an async ServiceController.WaitForStatus
- Does JavaScript allow getters and setters?
- Notice: Undefined property - how do I avoid that m
- Using the typical get set properties in C#… with p
- Mocking nested properties with mock
- Passing command line arguments to Java via ant bui
- Python - What is a lazy property?
- ANT - Could not load a dependent class com/jcraft/
ant-contrib's
Variable
task can do this:Not recommended, though, it can lead to weird side-effects if parts of your Ant scripts assume immutable property values, and other parts break this assumption.
Here is a sample using local with the basename command. Var-unset does not work for me.