diff options
author | Geoffrey Huntley <ghuntley@ghuntley.com> | 2015-05-04 12:02:06 +1000 |
---|---|---|
committer | Geoffrey Huntley <ghuntley@ghuntley.com> | 2015-05-05 14:15:47 +1000 |
commit | fc38971b356916cd3f0b8d1e25b9f864087da8bc (patch) | |
tree | 87bb64abe5b25e54fc653aa3121d5327028af6e2 | |
parent | f9d6fc2a569b6639ff20c1c678c16de8e61d9530 (diff) | |
download | coreclr-fc38971b356916cd3f0b8d1e25b9f864087da8bc.tar.gz coreclr-fc38971b356916cd3f0b8d1e25b9f864087da8bc.tar.bz2 coreclr-fc38971b356916cd3f0b8d1e25b9f864087da8bc.zip |
exclude Visual Studio 2015 `.vs` working directory
"The .vs directory is the new location where per-user solution-specific
items are saved. Previously there was no directory where this
information could be placed, so the IDE kept adding files alongside the
solution. It's finally a solution to a problem that's been here for a
very long time." - @sharwell
-rw-r--r-- | .gitignore | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 5e66c59078..6335f4b510 100644 --- a/.gitignore +++ b/.gitignore @@ -23,7 +23,10 @@ bld/ [Oo]bj/ msbuild.log -# Roslyn stuff +# Visual Studio 2015 +.vs/ + +# Visual Studio 2015 Pre-CTP6 *.sln.ide *.ide/ |