From 5ab4940b5f75e94bc0574a58456b8aff501ecb19 Mon Sep 17 00:00:00 2001 From: "Seonkyu.kim" Date: Mon, 19 May 2025 15:39:40 +0900 Subject: [PATCH] =?UTF-8?q?[=F0=9F=93=9D]=20gitignore=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 70 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2400df5..0502adf 100755 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ - # 기본 파일 및 폴더 제외 *.log *.env @@ -55,6 +54,11 @@ obj/ # Blazor 관련 **/wwwroot/_framework/ +./wwwroot +**/wwwroot +**/publish +./publish + # Docker 관련 docker-compose.override.yml @@ -62,4 +66,68 @@ Dockerfile # 기타 캐시 파일 **/*.cache -**/*.tmp \ No newline at end of file +**/*.tmp# 특정 환경에 따라 추가 + /private/ + /publish/ + /bin/ + /obj/ + + ./private/ + ./privacy/ + ./publish/ + ./bin/ + + + + + # 기본 파일 및 폴더 제외 + *.log + *.env + *.bak + *.tmp + *.swp + + # macOS 관련 파일 제외 + ._ + ._* + .DS_Store + .AppleDouble + .LSOverride + .Spotlight-V100 + .Trashes + + # Windows 관련 + Thumbs.db + ehthumbs.db + desktop.ini + + # Visual Studio 관련 + .vscode/ + .vs/ + *.suo + *.user + *.userosscache + *.sln.docstates + + # Rider 관련 + .idea/ + *.sln.iml + + # .NET 관련 + bin/ + obj/ + *.pdb + *.dll + *.exe + *.nuget/ + + # Blazor 관련 + **/wwwroot/_framework/ + + # Docker 관련 + docker-compose.override.yml + Dockerfile + + # 기타 캐시 파일 + **/*.cache + **/*.tmp \ No newline at end of file