chore: expand .gitignore with standard .NET/Visual Studio entries
This commit is contained in:
154
.gitignore
vendored
154
.gitignore
vendored
@@ -1,29 +1,165 @@
|
||||
## .NET
|
||||
bin/
|
||||
obj/
|
||||
*.user
|
||||
## Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
[Ww][Ii][Nn]32/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Oo]ut/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
msbuild.log
|
||||
msbuild.err
|
||||
msbuild.wrn
|
||||
MSBuild_Logs/
|
||||
*.binlog
|
||||
|
||||
## User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
*.userprefs
|
||||
*.env
|
||||
|
||||
## Mono crash logs
|
||||
mono_crash.*
|
||||
|
||||
## NuGet
|
||||
*.nupkg
|
||||
*.snupkg
|
||||
**/[Pp]ackages/*
|
||||
!**/[Pp]ackages/build/
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
## Visual Studio
|
||||
.vs/
|
||||
*.rsuser
|
||||
*.csproj.user
|
||||
Generated\ Files/
|
||||
|
||||
## JetBrains Rider
|
||||
.idea/
|
||||
*.sln.iml
|
||||
|
||||
## Test Results
|
||||
TestResults/
|
||||
coverage/
|
||||
## VS Code
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
*.code-workspace
|
||||
|
||||
## Test results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
*.trx
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
*.received.*
|
||||
|
||||
## Code coverage
|
||||
*.coverage
|
||||
*.coveragexml
|
||||
coverage*.json
|
||||
coverage*.xml
|
||||
*.dotCover
|
||||
.axoCover/*
|
||||
_NCrunch_*
|
||||
nCrunchTemp_*
|
||||
*.mm.*
|
||||
|
||||
## ReSharper
|
||||
_ReSharper*/
|
||||
*.DotSettings.user
|
||||
|
||||
## Compiled files
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.iobj
|
||||
*.pdb
|
||||
*.ipdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*_wpftmp.csproj
|
||||
*.tlog
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
## Build artifacts
|
||||
dlldata.c
|
||||
BenchmarkDotNet.Artifacts/
|
||||
|
||||
## Publish output
|
||||
PublishScripts/
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
*.pubxml
|
||||
!**/[Pp]ublish[Pp]rofiles/*.pubxml
|
||||
*.publishproj
|
||||
|
||||
## Azure
|
||||
csx/
|
||||
*.build.csdef
|
||||
ecf/
|
||||
rcf/
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
|
||||
## Web
|
||||
.sass-cache/
|
||||
[Ee]xpress/
|
||||
node_modules/
|
||||
|
||||
## Database
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
## Installer outputs
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
*.vsix
|
||||
|
||||
## Fakes and Fody
|
||||
FakesAssemblies/
|
||||
FodyWeavers.xsd
|
||||
|
||||
## Paket
|
||||
**/.paket/paket.exe
|
||||
**/.fake/
|
||||
|
||||
## Local history
|
||||
**/.localhistory/
|
||||
.vshistory/
|
||||
.history/
|
||||
|
||||
## Go reference implementation
|
||||
golang/
|
||||
|
||||
## OS
|
||||
.DS_Store
|
||||
|
||||
Reference in New Issue
Block a user