|
|
|
@ -1,7 +1,39 @@
|
|
|
|
|
# Created by https://www.toptal.com/developers/gitignore/api/dotnetcore,visualstudio,visualstudiocode
|
|
|
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=dotnetcore,visualstudio,visualstudiocode
|
|
|
|
|
|
|
|
|
|
### DotnetCore ###
|
|
|
|
|
# .NET Core build folders
|
|
|
|
|
bin/
|
|
|
|
|
obj/
|
|
|
|
|
|
|
|
|
|
# Common node modules locations
|
|
|
|
|
/node_modules
|
|
|
|
|
/wwwroot/node_modules
|
|
|
|
|
|
|
|
|
|
### VisualStudioCode ###
|
|
|
|
|
.vscode/*
|
|
|
|
|
!.vscode/settings.json
|
|
|
|
|
!.vscode/tasks.json
|
|
|
|
|
!.vscode/launch.json
|
|
|
|
|
!.vscode/extensions.json
|
|
|
|
|
!.vscode/*.code-snippets
|
|
|
|
|
|
|
|
|
|
# Local History for Visual Studio Code
|
|
|
|
|
.history/
|
|
|
|
|
|
|
|
|
|
# Built Visual Studio Code Extensions
|
|
|
|
|
*.vsix
|
|
|
|
|
|
|
|
|
|
### VisualStudioCode Patch ###
|
|
|
|
|
# Ignore all local history of files
|
|
|
|
|
.history
|
|
|
|
|
.ionide
|
|
|
|
|
|
|
|
|
|
### VisualStudio ###
|
|
|
|
|
## Ignore Visual Studio temporary files, build results, and
|
|
|
|
|
## files generated by popular Visual Studio add-ons.
|
|
|
|
|
##
|
|
|
|
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
|
|
|
|
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
|
|
|
|
|
|
|
|
|
# User-specific files
|
|
|
|
|
*.rsuser
|
|
|
|
@ -29,7 +61,6 @@ x86/
|
|
|
|
|
bld/
|
|
|
|
|
[Bb]in/
|
|
|
|
|
[Oo]bj/
|
|
|
|
|
[Oo]ut/
|
|
|
|
|
[Ll]og/
|
|
|
|
|
[Ll]ogs/
|
|
|
|
|
|
|
|
|
@ -91,6 +122,7 @@ StyleCopReport.xml
|
|
|
|
|
*.tmp_proj
|
|
|
|
|
*_wpftmp.csproj
|
|
|
|
|
*.log
|
|
|
|
|
*.tlog
|
|
|
|
|
*.vspscc
|
|
|
|
|
*.vssscc
|
|
|
|
|
.builds
|
|
|
|
@ -294,6 +326,15 @@ node_modules/
|
|
|
|
|
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
|
|
|
*.vbw
|
|
|
|
|
|
|
|
|
|
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
|
|
|
|
*.vbp
|
|
|
|
|
|
|
|
|
|
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
|
|
|
|
*.dsw
|
|
|
|
|
*.dsp
|
|
|
|
|
|
|
|
|
|
# Visual Studio 6 technical files
|
|
|
|
|
|
|
|
|
|
# Visual Studio LightSwitch build output
|
|
|
|
|
**/*.HTMLClient/GeneratedArtifacts
|
|
|
|
|
**/*.DesktopClient/GeneratedArtifacts
|
|
|
|
@ -350,6 +391,9 @@ ASALocalRun/
|
|
|
|
|
# Local History for Visual Studio
|
|
|
|
|
.localhistory/
|
|
|
|
|
|
|
|
|
|
# Visual Studio History (VSHistory) files
|
|
|
|
|
.vshistory/
|
|
|
|
|
|
|
|
|
|
# BeatPulse healthcheck temp database
|
|
|
|
|
healthchecksdb
|
|
|
|
|
|
|
|
|
@ -360,4 +404,24 @@ MigrationBackup/
|
|
|
|
|
.ionide/
|
|
|
|
|
|
|
|
|
|
# Fody - auto-generated XML schema
|
|
|
|
|
FodyWeavers.xsd
|
|
|
|
|
FodyWeavers.xsd
|
|
|
|
|
|
|
|
|
|
# VS Code files for those working on multiple tools
|
|
|
|
|
*.code-workspace
|
|
|
|
|
|
|
|
|
|
# Local History for Visual Studio Code
|
|
|
|
|
|
|
|
|
|
# Windows Installer files from build outputs
|
|
|
|
|
*.cab
|
|
|
|
|
*.msi
|
|
|
|
|
*.msix
|
|
|
|
|
*.msm
|
|
|
|
|
*.msp
|
|
|
|
|
|
|
|
|
|
# JetBrains Rider
|
|
|
|
|
*.sln.iml
|
|
|
|
|
|
|
|
|
|
### VisualStudio Patch ###
|
|
|
|
|
# Additional files built by Visual Studio
|
|
|
|
|
|
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/dotnetcore,visualstudio,visualstudiocode
|