From 5ce3a305881c3a46ee87a5e3ca53c3c2987a8a72 Mon Sep 17 00:00:00 2001 From: vidane Date: Tue, 13 Jan 2026 21:14:56 -0500 Subject: [PATCH] Add gitignore --- .gitignore | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5071e91 --- /dev/null +++ b/.gitignore @@ -0,0 +1,83 @@ +# Created by https://www.toptal.com/developers/gitignore/api/csharp,dotnet +# You can customize the patterns as needed + +# User-specific files +*.suo +*.user +*.userosscache +*.suo + +# Build results +[Dd]ebug/ +[Rr]elease/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# .NET Core +.dotnet/ + +# Visual Studio +.vs/ +.vscode/ +*.cache +*.ncb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# NuGet packages +*.nupkg +packages/ +**/packages/* + +# Build artifacts +*.dll +*.exe +*.pdb +*.exe.config +*.dll.config +*.deps.json +*.runtimeconfig.json + +# IDEs +.idea/ +*.swp +*.swo +*~ + +# OS generated files +.DS_Store +Thumbs.db +ehthumbs.db +Desktop.ini + +# Test results +[TestResults]/ +coverage/ + +# ReSharper +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity +_TeamCity* + +# DotCover +*.dotCover + +# NCrunch +.ncrunch* +*.crunch*.local.xml + +# Backup files +*.bak +*.orig +*.rej \ No newline at end of file