The above allows you to save assets that got created to changed as a result of the build process to your Dimensions project. You can specify one or more Java style regular expression patterns that will then be used to scan the build workspace for files that will saved to your Dimensions project.

If files have not been changed or created as a result of your build, then they will be ignored. This saving process will not store any build dependency information in Dimensions - just the files.

Some examples of valid patterns are shown below. If you use the "\" character, this must be protected using "\\", so ".*\.exe" becomes ".*\\.exe" instead.

.*.exe               This will match any .exe files
.*.obj                This will match any .obj files
src/.*.h             This will match any .h files in the src/ directory
src/.*[A-z]*.h    This will match any alpha-numeric .h files in the src/ directory
src\\.*[A-z]*.h   This will match any alpha-numeric .h files in the src\ directory

Directory separators in the patterns are OS specific.

Inclusion patterns are used to include files, exclusions to exclude them from the upload.

More information on regular expressions in Java can be found here