From 2c392c5f9a6a0178a1fb969e605862a54a505cd2 Mon Sep 17 00:00:00 2001 From: David A Kondrad Date: Fri, 25 Oct 2019 14:51:36 -0400 Subject: [PATCH] project: visual: fix VS2010/17 gitignore The `lz4` project was excluded from being checked in for VS2017. Add some fixups to explicitly allow this project directory. Also add an exclusion for VS2017 binaries and VS `ipch` directories. Signed-off-by: David A Kondrad --- visual/.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/visual/.gitignore b/visual/.gitignore index 276f8f5..69e1111 100644 --- a/visual/.gitignore +++ b/visual/.gitignore @@ -8,3 +8,9 @@ *.user ver*/ VS2010/bin/ +VS2017/bin/ +ipch + +# Fixup for lz4 project directories +!VS2010/lz4 +!VS2017/lz4 -- 2.7.4