From 76c5185dcd774a919c63dc66a7422724f2819ec0 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 18 May 2021 15:46:17 +0200 Subject: [PATCH] Move VS2010 Git ignore list to the VS2010 directory The main benefit is that this ensures that the directory always exists in a Git checkout. This way the maintenance scripts don't have to worry about the case where the directory doesn't exist. Also it unclutters `/.gitignore`. Signed-off-by: Gilles Peskine --- .gitignore | 12 ------------ visualc/VS2010/.gitignore | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 12 deletions(-) create mode 100644 visualc/VS2010/.gitignore diff --git a/.gitignore b/.gitignore index 7665265e9..b209ffcd9 100644 --- a/.gitignore +++ b/.gitignore @@ -37,18 +37,6 @@ massif-* # Microsoft CMake extension for Visual Studio Code generates a build directory by default /build/ -# Visual Studio automatically generated files -/visualc/VS2010/mbedTLS.sln -/visualc/VS2010/*.vcxproj - -# Visual Studio artifacts -/visualc/VS2010/.localhistory/ -/visualc/VS2010/.vs/ -/visualc/VS2010/Debug/ -/visualc/VS2010/Release/ -/visualc/VS2010/*.vcxproj.filters -/visualc/VS2010/*.vcxproj.user - # Generated documentation: /apidoc diff --git a/visualc/VS2010/.gitignore b/visualc/VS2010/.gitignore new file mode 100644 index 000000000..d3da304f7 --- /dev/null +++ b/visualc/VS2010/.gitignore @@ -0,0 +1,14 @@ +# Files automatically generated by generate_visualc_files.pl +/mbedTLS.sln +/*.vcxproj + +# Files that may be left over from check-generated-files.sh +/*.bak + +# Visual Studio artifacts +/.localhistory/ +/.vs/ +/Debug/ +/Release/ +/*.vcxproj.filters +/*.vcxproj.user