hi,
i have a build file as follows:
<target name="appSettings" description="create AppSettings files">
<appsettings confignode="appSettings" file="${sourcedir}\ManagementConsole\App.config" tofile="${builddir}\ManagementConsole.exe.config">
<change key="AppRoot" value="${AppRoot}" />
<change key="ConnectionString" value="${ConnectionString}" />
<change key="ConnectionTimeout" value="${ConnectionTimeout}" />
<change key="MaxConcurrentThreads" value="${MaxConcurrentThreads}" />
<change key="XMLQueuePath" value="${XMLQueuePath}" />
<change key="XMLQueueTimeout" value="${XMLQueueTimeout}" />
<change key="JobQueuePath" value="${JobQueuePath}" />
<change key="JobQueueTimeout" value="${JobQueueTimeout}" />
<change key="DailyStartTime" value="${DailyStartTime}" />
<change key="Debug" value="${Debug}" />
</appsettings>
<call target="copyAppSettings" />
</target>
i get the error:
E:\SourceDotNet\IWWB\build\iwwbcache.build(388,4):
invalid element <appsettings>. Unknown task or datatype.
is appsettings not a valid task??
thanx for any help.
javed