From 7239b3c2e7835bd427fc1c25cc1fe0ba124c3976 Mon Sep 17 00:00:00 2001 From: BroPlasmaNinja Date: Wed, 24 Apr 2024 11:04:53 +0400 Subject: [PATCH] some fix --- .gitignore | 138 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 116 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index 8c7f0e8..e0dfc29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,11 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. +# The following command works for downloading when using Git for Windows: +# curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore +# +# Download this file using PowerShell v3 under Windows with the following comand: +# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore +# +# or wget: +# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore # User-specific files *.suo @@ -7,12 +13,22 @@ *.sln.docstates # Build results - [Dd]ebug/ [Rr]elease/ x64/ [Bb]in/ [Oo]bj/ +# build folder is nowadays used for build scripts and should not be ignored +#build/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config # MSTest test Results [Tt]est[Rr]esult*/ @@ -20,7 +36,6 @@ x64/ *_i.c *_p.c -*_i.h *.ilk *.meta *.obj @@ -40,8 +55,6 @@ x64/ *.vssscc .builds *.pidb -*.log -*.svclog *.scc # Visual C++ cache files @@ -63,41 +76,58 @@ ipch/ # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper -*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.Publish.xml -*.pubxml -*.azurePubxml - -# NuGet Packages Directory -## TODO: If you have NuGet Package Restore enabled, uncomment the next line -packages/ -## TODO: If the tool you use requires repositories.config, also uncomment the next line -!packages/repositories.config # Windows Azure Build Output -csx/ +csx *.build.csdef # Windows Store app package directory AppPackages/ # Others -sql/ *.Cache ClientBin/ [Ss]tyle[Cc]op.* -![Ss]tyle[Cc]op.targets ~$* *~ *.dbmdl *.[Pp]ublish.xml - +*.pfx *.publishsettings +modulesbin/ +tempbin/ + +# EPiServer Site file (VPP) +AppData/ # RIA/Silverlight projects Generated_Code/ @@ -109,9 +139,33 @@ Backup*/ UpgradeLog*.XML UpgradeLog*.htm +# vim +*.txt~ +*.swp +*.swo + +# Temp files when opening LibreOffice on ubuntu +.~lock.* + +# svn +.svn + +# CVS - Source Control +**/CVS/ + +# Remainings from resolving conflicts in Source Control +*.orig + # SQL Server files -App_Data/*.mdf -App_Data/*.ldf +**/App_Data/*.mdf +**/App_Data/*.ldf +**/App_Data/*.sdf + + +#LightSwitch generated files +GeneratedArtifacts/ +_Pvt_Extensions/ +ModelManifest.xml # ========================= # Windows detritus @@ -127,7 +181,47 @@ Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ +# OS generated files # +Icon? + # Mac desktop service store files .DS_Store -_NCrunch* +# SASS Compiler cache +.sass-cache + +# Visual Studio 2014 CTP +**/*.sln.ide + +# Visual Studio temp something +.vs/ + +# dotnet stuff +project.lock.json + +# VS 2015+ +*.vc.vc.opendb +*.vc.db + +# Rider +.idea/ + +# Visual Studio Code +.vscode/ + +# Output folder used by Webpack or other FE stuff +**/node_modules/* +**/wwwroot/* + +# SpecFlow specific +*.feature.cs +*.feature.xlsx.* +*.Specs_*.html + +# UWP Projects +AppPackages/ + +##### +# End of core ignore list, below put you custom 'per project' settings (patterns or path) +##### +