Hi BlueWall,

thx for your responce. I have now tried all sorts of variations but always get the responce "returned no files" when running prebuild.

I have added the following (and many other folder variations) into the prebuild.xml of the addon module:

<Match pattern="../addons-modules/MyModule/FileName.xml" buildAction="Copy"
recurse="false" destination="$(OutputPath)" />

Maybe I am doing something wrong or prebuild is not working as it should?

Michelle



Am 20.08.2014 19:36, schrieb James Hughes:
On Wed, 2014-08-20 at 11:40 +0200, Michelle Argus wrote:
Hi. Is it possible to copy files from an add online folder to the bin
folder? If so, could someone give an example

The
Michelle

If you want to distribute a library/dependency you can do this ...

<Reference name="LibName_Sans_dll" path="../PathToFile"
localCopy="true" />

Do not use "LibName.dll", just "LibName"

For copying other types of files, try ...

For a single file:
<Match pattern="../MyFilesPath/FileName.xml" buildAction="Copy"
recurse="false" destination="$(OutputPath)" />

To find multiple files of a particular type, located in a hierarchy and
copy them to the place defined in $("OutputPath") w/o the hierarchy:
  <Match pattern="../MyFilesPath/*.xml" buildAction="Copy" recurse="true"
destination="$(OutputPath)" />


BlueWall


_______________________________________________
Opensim-dev mailing list
[email protected]
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev

_______________________________________________
Opensim-dev mailing list
[email protected]
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev

Reply via email to