Created
April 6, 2024 04:10
-
-
Save trvswgnr/cf9713bee39710dffac6748f35c7751c to your computer and use it in GitHub Desktop.
c# gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Standard .NET and C# ignores | |
bin/ | |
obj/ | |
out/ | |
build/ | |
buildscript/ | |
*.sln.cache | |
*.suo | |
*.user | |
*.userprefs | |
*.pidb | |
*.nupkg | |
*.nuget.targets | |
*.resharper | |
_ReSharper.*/ | |
*.csproj.user | |
*.dotCover | |
# VS Code directories | |
.vscode/ | |
.vscode/* | |
# Rider | |
.idea/ | |
# User-specific files | |
*.rsuser | |
*.suo | |
*.user | |
*.userosscache | |
*.sln.docstates | |
# MonoDevelop/Xamarin Studio | |
*.userprefs | |
monodevelop-* | |
*.pidb | |
*.workspace | |
*.tlog | |
# Build results | |
[Dd]ebug/ | |
[Dd]ebugPublic/ | |
[Rr]elease/ | |
[Rr]eleases/ | |
x64/ | |
x86/ | |
[Aa][Rr][Mm]/ | |
[Aa][Rr][Mm]64/ | |
bld/ | |
[Bb]in/ | |
[Oo]bj/ | |
[Ll]og/ | |
[Ll]ogs/ | |
[Tt]est[Rr]esult*/ | |
*.VisualState.xml | |
TestResult.xml | |
nunit-*.xml | |
# .NET Core | |
project.lock.json | |
project.fragment.lock.json | |
artifacts/ | |
**/Properties/launchSettings.json | |
# Tye | |
.tye/ | |
tye.yaml | |
# Paket dependency manager | |
.paket/paket.exe | |
paket-files/ | |
# FAKE - F# Make | |
.fake/ | |
# JetBrains Rider | |
.idea/ | |
*.sln.iml | |
# User-specific files | |
*.rsuser | |
*.userosscache | |
# Mono Auto Generated Files | |
mono_crash.* | |
# macOS-specific ignores | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment