Gets a comma-separated list of frameworks filtered by the specified FrameworkTypes.
A comma-separated list of frameworks filtered by the specified FrameworkTypes, sorted on name.
Define a build-all target that executes the build target once for each installed framework targeting compact devices.
<target name="build-all">
<foreach item="String" in="${framework::get-frameworks('installed compact')}" delim="," property="framework">
<property name="nant.settings.currentframework" value="${framework}" />
<call target="build" />
</foreach>
</target>
<target name="build">
...
</target>
FrameworkFunctions Class | NAnt.Core.Functions Namespace