From e12c304ebd9d72d3bf168d56cf6de813b934f13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20D=C3=B6bler?= Date: Sat, 19 Jan 2013 17:25:10 +0100 Subject: [PATCH 1/6] VisualStudio: Ignore update log HTML file VS2012 creates UpdateLog2.htm - not needed in git repository --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 07c4255d..f6162967 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -115,6 +115,7 @@ Generated_Code #added for RIA/Silverlight projects _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML +UpgradeLog*.htm # SQL Server files App_Data/*.mdf From 2ed26ea654df110f66d9d2740e67287054712c5f Mon Sep 17 00:00:00 2001 From: sgm Date: Wed, 9 Jan 2013 21:35:20 +0900 Subject: [PATCH 2/6] VisualStudio: Ignore *.tmp_proj This might be created temporarily during a build. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f6162967..5fa5bfd5 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -34,6 +34,7 @@ build/ *.tli *.tlh *.tmp +*.tmp_proj *.log *.vspscc *.vssscc From ed056fdb8e8dc799cbc03f6a5f90b0bdbf20d416 Mon Sep 17 00:00:00 2001 From: neogic Date: Tue, 11 Dec 2012 02:28:04 +0000 Subject: [PATCH 3/6] VisualStudio: Remove dupes, add trailing slashes, etc. Add trailing slashes to folders, RS rule comment, remove dupes. --- VisualStudio.gitignore | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 5fa5bfd5..786f3b3f 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -16,7 +16,7 @@ build/ [Oo]bj/ # MSTest test Results -[Tt]est[Rr]esults/ +[Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* *_i.c @@ -60,7 +60,7 @@ ipch/ # ReSharper is a .NET coding add-in _ReSharper*/ - +# Some recommend against the RS rule below - excludes useful info? *.[Rr]e[Ss]harper # NCrunch @@ -68,7 +68,7 @@ _ReSharper*/ .*crunch*.local.xml # Installshield output folder -[Ee]xpress +[Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ @@ -81,7 +81,7 @@ DocProject/Help/Html2 DocProject/Help/html # Click-Once directory -publish +publish/ # Publish Web Output *.Publish.xml @@ -98,18 +98,17 @@ csx AppPackages/ # Others -sql -TestResults -[Tt]est[Rr]esult* +sql/ *.Cache -ClientBin +ClientBin/ [Ss]tyle[Cc]op.* ~$* *.dbmdl *.[Pp]ublish.xml *.pfx -Generated_Code #added for RIA/Silverlight projects +# RIA/Silverlight projects +Generated_Code/ # Backup & report files from converting an old project file to a newer # Visual Studio version. Backup files are not needed, because we have git ;-) From 78b77feb29cb0e8e5b3e984743f6f4855961006b Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Sat, 11 Aug 2012 15:33:32 -0700 Subject: [PATCH 4/6] VisualStudio: Ignore vi's *~ temp files --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 786f3b3f..4ccc1cb6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -103,6 +103,7 @@ sql/ ClientBin/ [Ss]tyle[Cc]op.* ~$* +*~ *.dbmdl *.[Pp]ublish.xml *.pfx From 5f950e0aeccbdb3450114587047c653bf53150bd Mon Sep 17 00:00:00 2001 From: Kristian Hellang Date: Wed, 15 Aug 2012 10:54:17 +0300 Subject: [PATCH 5/6] VisualStudio: Include the packages/repositories.config file. I agree to ignore the NuGet packages folder, but I really think you should check in the repositories.config so NuGet PackageRestore can do it's magic when someone pulls the code and tries to build it... --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 4ccc1cb6..70537cc6 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -89,6 +89,7 @@ publish/ # NuGet Packages Directory ## TODO: If you have NuGet Package Restore enabled, uncomment the next line #packages/ +!packages/repositories.config # Windows Azure Build Output csx From 5684f73b9844eba53642c41b3e742e4d13960e24 Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Thu, 19 Apr 2012 11:17:30 +0200 Subject: [PATCH 6/6] VisualStudio: ignore .dotcover files. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 70537cc6..81c058f3 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -63,6 +63,9 @@ _ReSharper*/ # Some recommend against the RS rule below - excludes useful info? *.[Rr]e[Ss]harper +# DotCover is a Code Coverage Tool +*.dotCover + # NCrunch *.ncrunch* .*crunch*.local.xml