From 5dee4f5fa66aa1d5534a410b743c1487a2008667 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 22 Feb 2026 21:15:39 -0500 Subject: [PATCH] chore: expand .gitignore with standard .NET/Visual Studio entries --- .gitignore | 154 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 145 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index ada5870..ce6fb8c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1,165 @@ -## .NET -bin/ -obj/ -*.user +## 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/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ +msbuild.log +msbuild.err +msbuild.wrn +MSBuild_Logs/ +*.binlog + +## User-specific files +*.rsuser *.suo +*.user *.userosscache *.sln.docstates +*.userprefs +*.env + +## Mono crash logs +mono_crash.* ## NuGet *.nupkg *.snupkg **/[Pp]ackages/* !**/[Pp]ackages/build/ +project.lock.json +project.fragment.lock.json +artifacts/ +*.nuget.props +*.nuget.targets ## Visual Studio .vs/ -*.rsuser -*.csproj.user +Generated\ Files/ ## JetBrains Rider .idea/ *.sln.iml -## Test Results -TestResults/ -coverage/ +## VS Code +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +## Test results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* +*.trx +*.VisualState.xml +TestResult.xml +nunit-*.xml +*.received.* + +## Code coverage +*.coverage +*.coveragexml +coverage*.json +coverage*.xml +*.dotCover +.axoCover/* +_NCrunch_* +nCrunchTemp_* +*.mm.* + +## ReSharper +_ReSharper*/ +*.DotSettings.user + +## Compiled files +*.ilk +*.meta +*.obj +*.iobj +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.tlog +*.vspscc +*.vssscc +*.pidb +*.svclog +*.scc + +## Build artifacts +dlldata.c +BenchmarkDotNet.Artifacts/ + +## Publish output +PublishScripts/ +*.[Pp]ublish.xml +*.azurePubxml +*.pubxml +!**/[Pp]ublish[Pp]rofiles/*.pubxml +*.publishproj + +## Azure +csx/ +*.build.csdef +ecf/ +rcf/ +AppPackages/ +BundleArtifacts/ + +## Web +.sass-cache/ +[Ee]xpress/ +node_modules/ + +## Database +*.mdf +*.ldf +*.ndf + +## Installer outputs +*.cab +*.msi +*.msix +*.msm +*.msp +*.vsix + +## Fakes and Fody +FakesAssemblies/ +FodyWeavers.xsd + +## Paket +**/.paket/paket.exe +**/.fake/ + +## Local history +**/.localhistory/ +.vshistory/ +.history/ + +## Go reference implementation +golang/ ## OS .DS_Store