From 5858aaa8831b278855a7f94e13fc743d7801a35c Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Wed, 25 Sep 2024 16:33:00 +0800 Subject: [PATCH] Update .gitignore for Visual Studio cache and NuGet packages --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.gitignore b/.gitignore index eac4e4bae..52814c9bb 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,32 @@ Thumbs.db Win32 x64 My Project + +# Visual Studio - Roslyn cache directory +.vs/ + +# NuGet ------------------------------------------------------------------------------------------- + +# Ignore NuGet Packages +*.nupkg + +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* + +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ + +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config + +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Ignore other intermediate files that NuGet might create. project.lock.json is used in conjunction +# with project.json (NuGet v3); project.assets.json is used in conjunction with the PackageReference +# format (NuGet v4 and .NET Core). +project.lock.json +project.assets.json + +# -------------------------------------------------------------------------------------------------