My .gitignore file for .NET Development

Spread the love

When you create a git repository a gitignore file is created. A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected. If you are using Github like me, you will find that there is no default gitignore for a C# project. So with the help of gitignore.io I have a .gitignore file for my .NET Standard and Core Projects.

  1. ### Git Ignore###
  2. # User-specific files
  3. *.suo
  4. *.user
  5. *.userosscache
  6. *.sln.docstates
  7. # User-specific files (MonoDevelop/Xamarin Studio)
  8. *.userprefs
  9. # Build results
  10. [Dd]ebug/
  11. [Dd]ebugPublic/
  12. [Rr]elease/
  13. [Rr]eleases/
  14. x64/
  15. x86/
  16. bld/
  17. [Bb]in/
  18. [Oo]bj/
  19. [Ll]og/
  20. # Visual Studio 2015-2017 cache/options directory
  21. .vs/
  22. # Uncomment if you have tasks that create the project's static files in wwwroot
  23. # wwwroot/
  24. # MSTest test Results
  25. [Tt]est[Rr]esult*/
  26. [Bb]uild[Ll]og.*
  27. # NUNIT
  28. *.VisualState.xml
  29. TestResult.xml
  30. # Build Results of an ATL Project
  31. [Dd]ebugPS/
  32. [Rr]eleasePS/
  33. dlldata.c
  34. # DNX
  35. project.lock.json
  36. project.fragment.lock.json
  37. artifacts/
  38. *_i.c
  39. *_p.c
  40. *_i.h
  41. *.ilk
  42. *.meta
  43. *.obj
  44. *.pch
  45. *.pdb
  46. *.pgc
  47. *.pgd
  48. *.rsp
  49. *.sbr
  50. *.tlb
  51. *.tli
  52. *.tlh
  53. *.tmp
  54. *.tmp_proj
  55. *.log
  56. *.vspscc
  57. *.vssscc
  58. .builds
  59. *.pidb
  60. *.svclog
  61. *.scc
  62. # Chutzpah Test files
  63. _Chutzpah*
  64. # Visual C++ cache files
  65. ipch/
  66. *.aps
  67. *.ncb
  68. *.opendb
  69. *.opensdf
  70. *.sdf
  71. *.cachefile
  72. *.VC.db
  73. *.VC.VC.opendb
  74. # Visual Studio profiler
  75. *.psess
  76. *.vsp
  77. *.vspx
  78. *.sap
  79. # TFS Local Workspace
  80. $tf/
  81. # Guidance Automation Toolkit
  82. *.gpState
  83. # ReSharper is a .NET coding add-in
  84. _ReSharper*/
  85. *.[Rr]e[Ss]harper
  86. *.DotSettings.user
  87. # JustCode is a .NET coding add-in
  88. .JustCode
  89. # TeamCity is a build add-in
  90. _TeamCity*
  91. # DotCover is a Code Coverage Tool
  92. *.dotCover
  93. # Visual Studio code coverage results
  94. *.coverage
  95. *.coveragexml
  96. # NCrunch
  97. _NCrunch_*
  98. .*crunch*.local.xml
  99. nCrunchTemp_*
  100. # MightyMoose
  101. *.mm.*
  102. AutoTest.Net/
  103. # Web workbench (sass)
  104. .sass-cache/
  105. # Installshield output folder
  106. [Ee]xpress/
  107. # DocProject is a documentation generator add-in
  108. DocProject/buildhelp/
  109. DocProject/Help/*.HxT
  110. DocProject/Help/*.HxC
  111. DocProject/Help/*.hhc
  112. DocProject/Help/*.hhk
  113. DocProject/Help/*.hhp
  114. DocProject/Help/Html2
  115. DocProject/Help/html
  116. # Click-Once directory
  117. publish/
  118. # Publish Web Output
  119. *.[Pp]ublish.xml
  120. *.azurePubxml
  121. # TODO: Comment the next line if you want to checkin your web deploy settings
  122. # but database connection strings (with potential passwords) will be unencrypted
  123. *.pubxml
  124. *.publishproj
  125. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  126. # checkin your Azure Web App publish settings, but sensitive information contained
  127. # in these scripts will be unencrypted
  128. PublishScripts/
  129. # NuGet Packages
  130. *.nupkg
  131. # The packages folder can be ignored because of Package Restore
  132. **/packages/*
  133. # except build/, which is used as an MSBuild target.
  134. !**/packages/build/
  135. # Uncomment if necessary however generally it will be regenerated when needed
  136. #!**/packages/repositories.config
  137. # NuGet v3's project.json files produces more ignoreable files
  138. *.nuget.props
  139. *.nuget.targets
  140. # Microsoft Azure Build Output
  141. csx/
  142. *.build.csdef
  143. # Microsoft Azure Emulator
  144. ecf/
  145. rcf/
  146. # Windows Store app package directories and files
  147. AppPackages/
  148. BundleArtifacts/
  149. Package.StoreAssociation.xml
  150. _pkginfo.txt
  151. # Visual Studio cache files
  152. # files ending in .cache can be ignored
  153. *.[Cc]ache
  154. # but keep track of directories ending in .cache
  155. !*.[Cc]ache/
  156. # Others
  157. ClientBin/
  158. ~$*
  159. *~
  160. *.dbmdl
  161. *.dbproj.schemaview
  162. *.jfm
  163. *.pfx
  164. *.publishsettings
  165. node_modules/
  166. orleans.codegen.cs
  167. # Since there are multiple workflows, uncomment next line to ignore bower_components
  168. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  169. #bower_components/
  170. # RIA/Silverlight projects
  171. Generated_Code/
  172. # Backup & report files from converting an old project file
  173. # to a newer Visual Studio version. Backup files are not needed,
  174. # because we have git <img draggable="false" class="emoji" alt="๐Ÿ˜‰" src="https://s.w.org/images/core/emoji/11/svg/1f609.svg">
  175. _UpgradeReport_Files/
  176. Backup*/
  177. UpgradeLog*.XML
  178. UpgradeLog*.htm
  179. # SQL Server files
  180. *.mdf
  181. *.ldf
  182. # Business Intelligence projects
  183. *.rdl.data
  184. *.bim.layout
  185. *.bim_*.settings
  186. # Microsoft Fakes
  187. FakesAssemblies/
  188. # GhostDoc plugin setting file
  189. *.GhostDoc.xml
  190. # Node.js Tools for Visual Studio
  191. .ntvs_analysis.dat
  192. # Visual Studio 6 build log
  193. *.plg
  194. # Visual Studio 6 workspace options file
  195. *.opt
  196. # Visual Studio LightSwitch build output
  197. **/*.HTMLClient/GeneratedArtifacts
  198. **/*.DesktopClient/GeneratedArtifacts
  199. **/*.DesktopClient/ModelManifest.xml
  200. **/*.Server/GeneratedArtifacts
  201. **/*.Server/ModelManifest.xml
  202. _Pvt_Extensions
  203. # Paket dependency manager
  204. .paket/paket.exe
  205. paket-files/
  206. # FAKE - F# Make
  207. .fake/
  208. # JetBrains Rider
  209. .idea/
  210. *.sln.iml
  211. # CodeRush
  212. .cr/
  213. # Python Tools for Visual Studio (PTVS)
  214. __pycache__/
  215. *.pyc
  216. # Cake - Uncomment if you are using it
  217. # tools/
### Git Ignore###

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

# Visual Studio 2015-2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
# wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
project.fragment.lock.json
artifacts/

*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# Visual Studio code coverage results
*.coverage
*.coveragexml

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# 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 <img draggable="false" class="emoji" alt="๐Ÿ˜‰" src="https://s.w.org/images/core/emoji/11/svg/1f609.svg">
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml

# CodeRush
.cr/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc

# Cake - Uncomment if you are using it
# tools/

 

Leave a Reply

Your email address will not be published. Required fields are marked *