From d0a5898896dfd0d8806e31b726ef9dd49ea4220c Mon Sep 17 00:00:00 2001 From: William Kent Date: Sat, 2 Feb 2019 15:35:43 -0500 Subject: [PATCH 1/2] Add .gitignore --- .gitignore | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f82e977 --- /dev/null +++ b/.gitignore @@ -0,0 +1,132 @@ +syntax: glob + +### VisualStudio ### + +# Tools directory +/[Tt]ools/ +.dotnet/ +.packages/ + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates +launchSettings.json + +# Build results + +artifacts/ +[Dd]ebug/ +[Rr]elease/ +x64/ +x86/ +[Bb]in/ +[Oo]bj/ +msbuild.log +msbuild.err +msbuild.wrn +msbuild.binlog + +# Visual Studio 2015 +.vs/ + +# Visual Studio 2015 Pre-CTP6 +*.sln.ide +*.ide/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +#NUNIT +*.VisualState.xml +TestResult.xml + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# DotCover is a Code Coverage Tool +*.dotCover + +# NuGet Packages +*.nuget.props +*.nuget.targets +*.nupkg +**/packages/* + +### Windows ### + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk + +### Linux ### + +*~ + +# KDE directory preferences +.directory + +### OSX ### + +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# vim temporary files +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +*.un~ +Session.vim +.netrwhist +*~ + +# Visual Studio Code +.vscode/ + +# Private test configuration and binaries. +config.ps1 +**/IISApplications + + +# Node.js modules +node_modules/ + +# Python Compile Outputs + +*.pyc From fdcc26dacd00e8204f0a095ce03cc4fdff5a5281 Mon Sep 17 00:00:00 2001 From: William Kent Date: Sat, 2 Feb 2019 15:38:38 -0500 Subject: [PATCH 2/2] Remove inappropriate entries from gitignore These entries were specific to a project created by .NET Core (I forget which one, unfortunately), which is where I got this file originally. --- .gitignore | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitignore b/.gitignore index f82e977..f66f186 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,6 @@ syntax: glob ### VisualStudio ### -# Tools directory -/[Tt]ools/ -.dotnet/ -.packages/ - # User-specific files *.suo *.user