Created
March 14, 2025 20:53
-
-
Save abeldantas/5fb7966d3e8be6574ae10406dc02ceeb to your computer and use it in GitHub Desktop.
Blazor gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Visual Studio files | |
| .vs/ | |
| .vscode/ | |
| *.suo | |
| *.user | |
| *.userosscache | |
| *.sln.docstates | |
| *.userprefs | |
| # Build results | |
| [Dd]ebug/ | |
| [Dd]ebugPublic/ | |
| [Rr]elease/ | |
| [Rr]eleases/ | |
| x64/ | |
| x86/ | |
| [Aa][Rr][Mm]/ | |
| [Aa][Rr][Mm]64/ | |
| bld/ | |
| [Bb]in/ | |
| [Oo]bj/ | |
| [Ll]og/ | |
| [Ll]ogs/ | |
| # MSTest test Results | |
| [Tt]est[Rr]esult*/ | |
| [Bb]uild[Ll]og.* | |
| # .NET Core | |
| project.lock.json | |
| project.fragment.lock.json | |
| artifacts/ | |
| # ASP.NET Scaffolding | |
| ScaffoldingReadMe.txt | |
| # ReSharper | |
| _ReSharper*/ | |
| *.[Rr]e[Ss]harper | |
| *.DotSettings.user | |
| # NuGet Packages | |
| *.nupkg | |
| # NuGet Symbol Packages | |
| *.snupkg | |
| # 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 | |
| # Visual Studio cache files | |
| # files ending in .cache can be ignored | |
| *.[Cc]ache | |
| # but keep track of directories ending in .cache | |
| !?*.[Cc]ache/ | |
| # Blazor specific | |
| **/wwwroot/service-worker.js | |
| **/wwwroot/service-worker.published.js | |
| # StyleCop | |
| StyleCopReport.xml | |
| # Files built by Visual Studio | |
| *_i.c | |
| *_p.c | |
| *_h.h | |
| *.ilk | |
| *.meta | |
| *.obj | |
| *.iobj | |
| *.pch | |
| *.pdb | |
| *.ipdb | |
| *.pgc | |
| *.pgd | |
| *.rsp | |
| *.sbr | |
| *.tlb | |
| *.tli | |
| *.tlh | |
| *.tmp | |
| *.tmp_proj | |
| *_wpftmp.csproj | |
| *.log | |
| *.vspscc | |
| *.vssscc | |
| .builds | |
| *.pidb | |
| *.svclog | |
| *.scc | |
| # Visual Studio profiler | |
| *.psess | |
| *.vsp | |
| *.vspx | |
| *.sap | |
| # Visual Studio Trace Files | |
| *.e2e | |
| # Publish Web Output | |
| *.[Pp]ublish.xml | |
| *.azurePubxml | |
| # Note: Comment the next line if you want to checkin your web deploy settings, | |
| # but database connection strings (with potential passwords) will be unencrypted | |
| *.pubxml | |
| *.publishproj | |
| # Microsoft Azure Web App publish settings | |
| PublishScripts/ | |
| # Backup & report files from converting an old project file | |
| _UpgradeReport_Files/ | |
| Backup*/ | |
| UpgradeLog*.XML | |
| UpgradeLog*.htm | |
| ServiceFabricBackup/ | |
| *.rptproj.bak | |
| # Local History for Visual Studio | |
| .localhistory/ | |
| # BeatPulse healthcheck temp database | |
| healthchecksdb | |
| # Backup folder for Package Reference Convert tool | |
| MigrationBackup/ | |
| # Ionide (cross-platform F# VS Code tools) working folder | |
| .ionide/ | |
| # Service worker assets | |
| **/wwwroot/service-worker-assets.js | |
| # Appsettings for local development | |
| appsettings.Development.json | |
| appsettings.local.json | |
| # Rider | |
| .idea/ | |
| *.sln.iml | |
| # macOS | |
| .DS_Store | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment