source: .gitignore

dev
Last change on this file was 0757d8f, checked in by Стојков Марко <mst@…>, 3 years ago

Ignore all dsstore

  • Property mode set to 100644
File size: 4.7 KB
Line 
1## Ignore Visual Studio temporary files, build results, and
2## files generated by popular Visual Studio add-ons.
3##
4## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5
6# User-specific files
7*.suo
8*.user
9*.userosscache
10*.sln.docstates
11
12# User-specific files (MonoDevelop/Xamarin Studio)
13*.userprefs
14
15# Build results
16[Dd]ebug/
17[Dd]ebugPublic/
18[Rr]elease/
19[Rr]eleases/
20x64/
21x86/
22bld/
23[Bb]in/
24[Oo]bj/
25[Ll]og/
26
27# Visual Studio 2015 cache/options directory
28.vs/
29# Uncomment if you have tasks that create the project's static files in wwwroot
30#wwwroot/
31
32# MSTest test Results
33[Tt]est[Rr]esult*/
34[Bb]uild[Ll]og.*
35
36# NUNIT
37*.VisualState.xml
38TestResult.xml
39
40# Build Results of an ATL Project
41[Dd]ebugPS/
42[Rr]eleasePS/
43dlldata.c
44
45# .NET Core
46project.lock.json
47project.fragment.lock.json
48artifacts/
49
50*_i.c
51*_p.c
52*_i.h
53*.ilk
54*.meta
55*.obj
56*.pch
57*.pdb
58*.pgc
59*.pgd
60*.rsp
61*.sbr
62*.tlb
63*.tli
64*.tlh
65*.tmp
66*.tmp_proj
67*.log
68*.vspscc
69*.vssscc
70.builds
71*.pidb
72*.svclog
73*.scc
74
75# Chutzpah Test files
76_Chutzpah*
77
78# Visual C++ cache files
79ipch/
80*.aps
81*.ncb
82*.opendb
83*.opensdf
84*.sdf
85*.cachefile
86*.VC.db
87*.VC.VC.opendb
88
89# Visual Studio profiler
90*.psess
91*.vsp
92*.vspx
93*.sap
94
95# TFS 2012 Local Workspace
96$tf/
97
98# Guidance Automation Toolkit
99*.gpState
100
101# ReSharper is a .NET coding add-in
102_ReSharper*/
103*.[Rr]e[Ss]harper
104*.DotSettings.user
105
106# JustCode is a .NET coding add-in
107.JustCode
108
109# TeamCity is a build add-in
110_TeamCity*
111
112# DotCover is a Code Coverage Tool
113*.dotCover
114
115# Visual Studio code coverage results
116*.coverage
117*.coveragexml
118
119# NCrunch
120_NCrunch_*
121.*crunch*.local.xml
122nCrunchTemp_*
123
124# MightyMoose
125*.mm.*
126AutoTest.Net/
127
128# Web workbench (sass)
129.sass-cache/
130
131# Installshield output folder
132[Ee]xpress/
133
134# DocProject is a documentation generator add-in
135DocProject/buildhelp/
136DocProject/Help/*.HxT
137DocProject/Help/*.HxC
138DocProject/Help/*.hhc
139DocProject/Help/*.hhk
140DocProject/Help/*.hhp
141DocProject/Help/Html2
142DocProject/Help/html
143
144# Publish Web Output
145*.[Pp]ublish.xml
146*.azurePubxml
147# TODO: Comment the next line if you want to checkin your web deploy settings
148# but database connection strings (with potential passwords) will be unencrypted
149*.pubxml
150*.publishproj
151
152# Microsoft Azure Web App publish settings. Comment the next line if you want to
153# checkin your Azure Web App publish settings, but sensitive information contained
154# in these scripts will be unencrypted
155PublishScripts/
156
157# NuGet Packages
158*.nupkg
159# The packages folder can be ignored because of Package Restore
160**/packages/*
161# except build/, which is used as an MSBuild target.
162!**/packages/build/
163# Uncomment if necessary however generally it will be regenerated when needed
164#!**/packages/repositories.config
165# NuGet v3's project.json files produces more ignorable files
166*.nuget.props
167*.nuget.targets
168
169# Microsoft Azure Build Output
170csx/
171*.build.csdef
172
173# Microsoft Azure Emulator
174ecf/
175rcf/
176
177# Windows Store app package directories and files
178AppPackages/
179BundleArtifacts/
180Package.StoreAssociation.xml
181_pkginfo.txt
182
183# Visual Studio cache files
184# files ending in .cache can be ignored
185*.[Cc]ache
186# but keep track of directories ending in .cache
187!*.[Cc]ache/
188
189# Others
190ClientBin/
191~$*
192*~
193*.dbmdl
194*.dbproj.schemaview
195*.jfm
196*.pfx
197*.publishsettings
198orleans.codegen.cs
199
200# Since there are multiple workflows, uncomment next line to ignore bower_components
201# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
202#bower_components/
203
204# RIA/Silverlight projects
205Generated_Code/
206
207# Backup & report files from converting an old project file
208# to a newer Visual Studio version. Backup files are not needed,
209# because we have git ;-)
210_UpgradeReport_Files/
211Backup*/
212UpgradeLog*.XML
213UpgradeLog*.htm
214
215# SQL Server files
216*.mdf
217*.ldf
218*.ndf
219
220# Business Intelligence projects
221*.rdl.data
222*.bim.layout
223*.bim_*.settings
224
225# Microsoft Fakes
226FakesAssemblies/
227
228# GhostDoc plugin setting file
229*.GhostDoc.xml
230
231# Node.js Tools for Visual Studio
232.ntvs_analysis.dat
233node_modules/
234
235# Typescript v1 declaration files
236typings/
237
238# Visual Studio 6 build log
239*.plg
240
241# Visual Studio 6 workspace options file
242*.opt
243
244# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
245*.vbw
246
247# Visual Studio LightSwitch build output
248**/*.HTMLClient/GeneratedArtifacts
249**/*.DesktopClient/GeneratedArtifacts
250**/*.DesktopClient/ModelManifest.xml
251**/*.Server/GeneratedArtifacts
252**/*.Server/ModelManifest.xml
253_Pvt_Extensions
254
255# Paket dependency manager
256.paket/paket.exe
257paket-files/
258
259# FAKE - F# Make
260.fake/
261
262# JetBrains Rider
263.idea/
264*.sln.iml
265
266# CodeRush
267.cr/
268
269# Python Tools for Visual Studio (PTVS)
270__pycache__/
271*.pyc
272
273# Cake - Uncomment if you are using it
274# tools/**
275# !tools/packages.config
276
277# Telerik's JustMock configuration file
278*.jmconfig
279
280# BizTalk build output
281*.btp.cs
282*.btm.cs
283*.odx.cs
284*.xsd.cs
285.terraform
286
287# mac os
288*.DS_Store
Note: See TracBrowser for help on using the repository browser.