# Ignore all .log files *.log # Ignore all .tmp files *.tmp # Ignore all .swp, .swn, and .swx files *.swp *.swn *.swx *.dll *.exe *.pdb *.deps.json *.runtimeconfig.json # Ignore the node_modules directory node_modules/ # Ignore all files in the temp directory temp/ # Ignore all files in the bin and obj directories, which are generated during build bin/ obj/ # Ignore all files in the Temp directory, which may be created by the .NET Framework Temp/ # Ignore all files in the Release and Debug directories, which are often used for builds Release/ Debug/ # Ignore the app.config file, which is often used to store configuration settings #app.config # Ignore the project.lock.json and project.assets.json files, which are used by NuGet project.lock.json project.assets.json # Ignore all files in the _ReSharper directory, which is used by ReSharper _ReSharper/ # Ignore the .vs directory, which is used by Visual Studio .vs/ # Ignore the .user file, which may contain user-specific settings for the project *.user # Ignore the .suo file, which contains solution-specific user options *.suo # Ignore the .userprefs file, which may contain user-specific preferences *.userprefs # Ignore all files in the .git directory, which is used by Git .git/ # Ignore all files with a .vscode directory, which is used by Visual Studio Code .vscode/ # Ignore all files with a .DS_Store file, which is specific to macOS .DS_Store # Ignore all files with a Thumbs.db file, which is specific to Windows Explorer Thumbs.db # Ignore all files with a _svn directory, which is used by Subversion _svn/