1
0
mirror of https://github.com/github/gitignore synced 2024-06-20 03:12:50 +02:00

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

View File

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