Ignore Plugins/**/ folders and vsconfig

The current ignore would not cater for `Intermediate` and `Binaries` folder within second level plugins such as `Plugins/GameFeatures/MyLyraFeaturePlugin` . Hence the ignore pattern should be `Plugins/**/`

Also .vsconfig should be ignored and the `Visual Studio 2015` comment is out of date.
This commit is contained in:
Yun Zhi Lin 2023-01-10 23:15:50 +11:00 committed by GitHub
parent 4488915eec
commit 97a1ee6efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Visual Studio 2015 user specific files
# Visual Studio user specific files
.vs/
.vsconfig
# Compiled Object files
*.slo
@ -47,7 +48,7 @@ SourceArt/**/*.tga
# Binary Files
Binaries/*
Plugins/*/Binaries/*
Plugins/**/Binaries/*
# Builds
Build/*
@ -68,7 +69,7 @@ Saved/*
# Compiled source files for the engine to use
Intermediate/*
Plugins/*/Intermediate/*
Plugins/**/Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*