Ignore Files and Folders
If after building your game temporary files are created that you do not want to include in the patch then you can use the ignore file.
To set your ignore file go to Advanced tab and click the "Change" button opposite the "Ignore File". And select your ignore file.
Ignore File
This file is used to list files and directories that must be ignored.
Any folder name must include "/" otherwise it will be defined as the file name.
All directories that include the path specified in the ignore file will be ignored. Example: "/obj" will exclude "folder1/obj" and "folder2/obj".
You can use * in front of the file name so that the system searches for all files with a name matching the value after *.
Example file ignore:
/obj
/Temp/GameObjects
.DS_Store
*.asset
*fig.xml
No Comments