From 3d6480f7a2b1606e40f3b33e9248ec55f75bcd02 Mon Sep 17 00:00:00 2001 From: "GukSang.Jin" Date: Tue, 13 Jan 2026 15:56:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14a5ff4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,74 @@ +# .gitignore for C# WPF Projects + +# Visual Studio specific +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates + +# Build results +[Bb]in/ +[Oo]bj/ +[Rr]elease/ +[Dd]ebug/ +[Rr]eleases/ +x64/ +x86/ +build/ + +# .NET Core/5/6/7/8 build results +bin/ +obj/ + +# Rider specific +.idea/ +*.sln.iml + +# User-specific files +*.DotSettings.user + +# Resharper specific +_ReSharper*/ +*.resharper + +# Test results +TestResults/ +*.trx + +# NuGet packages +packages/ +*.nupkg + +# Publish folder +[Pp]ublish/ + +# Cache files +*.cache + +# Windows thumbnail cache +Thumbs.db + +# Visual Studio code coverage results +*.coverage +*.coverage.xml + +# Local settings +*.local.xml + +# Log files +*.log + +# WPF specific +Generated_Code/ + +# Secrets and local config +secrets.json +appsettings.local.json + +# Other +*.pdb +*.exe +*.dll +*.zip +*.rar