diff options
author | Andreia Gaita <github@spoiledcat.net> | 2019-01-08 15:19:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 15:19:14 +0000 |
commit | 20f0ea9bc3d2a973cbb5efdf3e45f07a56997cba (patch) | |
tree | f715e5e7fd3983ab710a9e11437e06eb3034447e | |
parent | f5496031c8b8ed73ef2856c0113e39dd0184b3e3 (diff) | |
parent | 152f419973461706e30f4f7701baf7434da95a9b (diff) | |
download | gitignore-20f0ea9bc3d2a973cbb5efdf3e45f07a56997cba.tar.gz gitignore-20f0ea9bc3d2a973cbb5efdf3e45f07a56997cba.zip |
Merge pull request #2926 from github/mdbs-are-people-too
Unity: ignore mdbs, fix path to crashlytics file, make AssetStoreTools optional
-rw-r--r-- | Unity.gitignore | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Unity.gitignore b/Unity.gitignore index e59f3c27..59580361 100644 --- a/Unity.gitignore +++ b/Unity.gitignore @@ -4,7 +4,9 @@ [Bb]uild/ [Bb]uilds/ [Ll]ogs/ -[Aa]ssets/AssetStoreTools* + +# Uncomment this line if you wish to ignore the asset store tools plugin +# [Aa]ssets/AssetStoreTools* # Visual Studio cache directory .vs/ @@ -26,12 +28,14 @@ ExportedObj/ *.booproj *.svd *.pdb +*.mdb *.opendb *.VC.db # Unity3D generated meta files *.pidb.meta *.pdb.meta +*.mdb.meta # Unity3D generated file on crash reports sysinfo.txt @@ -41,5 +45,5 @@ sysinfo.txt *.unitypackage # Crashlytics generated file -Assets/StreamingAssets/crashlytics-build.properties +crashlytics-build.properties |