From 58f92def4e1c7d1ce68c09842e99a8e8ed29f631 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 8 Oct 2020 22:14:31 -0400 Subject: [PATCH] Update gitignore --- .gitignore | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 6e57476..39da69f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,35 +1,52 @@ - -# Do not track local environment settings. -.venv/ -.vscode/ -.idea/ +### + # GitIgnore file for C# projects. + # See https://git-scm.com/docs/gitignore for documentation. + # + # Version 1.0 + ## + + +# Ignore environment settings. +.vs/ +vs/ +*.rsuser +*.suo +*.user +*.userprefs +*.userosscache +*.sln.docstates -# Do not track mono files. -*.userprefs -mono_crash.* +# Ignore tempfile directories. +temp/ +tempfiles/ -# Do not track local build results. +# Ignore project build results. [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ +[Ww][Ii][Nn]32/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ -[Ll]og/ -[Ll]ogs/ -# Do not track NuGet packages. +# Ignore NuGet package data. +**/[Pp]ackages/* +!**/[Pp]ackages/build/ # except build/, which is used as an MSBuild target. *.nupkg *.nuget.props *.nuget.targets -**/[Pp]ackages/* -!**/[Pp]ackages/build/ # except build/, which is used as an MSBuild target. + +# Ignore logfiles. +[Ll]og/ +[Ll]ogs/ +*.log +*.log.* -- GitLab