source: Farmatiko/.gitignore@ 92a1f41

Last change on this file since 92a1f41 was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Initial commit

  • Property mode set to 100644
File size: 3.5 KB
Line 
1## Ignore Visual Studio temporary files, build results, and
2## files generated by popular Visual Studio add-ons.
3
4# User-specific files
5*.suo
6*.user
7*.userosscache
8*.sln.docstates
9
10# User-specific files (MonoDevelop/Xamarin Studio)
11*.userprefs
12
13# Build results
14[Dd]ebug/
15[Dd]ebugPublic/
16[Rr]elease/
17[Rr]eleases/
18x64/
19x86/
20build/
21bld/
22bin/
23Bin/
24obj/
25Obj/
26
27# Visual Studio 2015 cache/options directory
28.vs/
29
30# MSTest test Results
31[Tt]est[Rr]esult*/
32[Bb]uild[Ll]og.*
33
34# NUNIT
35*.VisualState.xml
36TestResult.xml
37
38# Build Results of an ATL Project
39[Dd]ebugPS/
40[Rr]eleasePS/
41dlldata.c
42
43*_i.c
44*_p.c
45*_i.h
46*.ilk
47*.meta
48*.obj
49*.pch
50*.pdb
51*.pgc
52*.pgd
53*.rsp
54*.sbr
55*.tlb
56*.tli
57*.tlh
58*.tmp
59*.tmp_proj
60*.log
61*.vspscc
62*.vssscc
63.builds
64*.pidb
65*.svclog
66*.scc
67
68# Chutzpah Test files
69_Chutzpah*
70
71# Visual C++ cache files
72ipch/
73*.aps
74*.ncb
75*.opendb
76*.opensdf
77*.sdf
78*.cachefile
79
80# Visual Studio profiler
81*.psess
82*.vsp
83*.vspx
84*.sap
85
86# TFS 2012 Local Workspace
87$tf/
88
89# Guidance Automation Toolkit
90*.gpState
91
92# ReSharper is a .NET coding add-in
93_ReSharper*/
94*.[Rr]e[Ss]harper
95*.DotSettings.user
96
97# JustCode is a .NET coding add-in
98.JustCode
99
100# TeamCity is a build add-in
101_TeamCity*
102
103# DotCover is a Code Coverage Tool
104*.dotCover
105
106# NCrunch
107_NCrunch_*
108.*crunch*.local.xml
109nCrunchTemp_*
110
111# MightyMoose
112*.mm.*
113AutoTest.Net/
114
115# Web workbench (sass)
116.sass-cache/
117
118# Installshield output folder
119[Ee]xpress/
120
121# DocProject is a documentation generator add-in
122DocProject/buildhelp/
123DocProject/Help/*.HxT
124DocProject/Help/*.HxC
125DocProject/Help/*.hhc
126DocProject/Help/*.hhk
127DocProject/Help/*.hhp
128DocProject/Help/Html2
129DocProject/Help/html
130
131# Click-Once directory
132publish/
133
134# Publish Web Output
135*.[Pp]ublish.xml
136*.azurePubxml
137# TODO: Comment the next line if you want to checkin your web deploy settings
138# but database connection strings (with potential passwords) will be unencrypted
139*.pubxml
140*.publishproj
141
142# NuGet Packages
143*.nupkg
144# The packages folder can be ignored because of Package Restore
145**/packages/*
146# except build/, which is used as an MSBuild target.
147!**/packages/build/
148# Uncomment if necessary however generally it will be regenerated when needed
149#!**/packages/repositories.config
150
151# Microsoft Azure Build Output
152csx/
153*.build.csdef
154
155# Microsoft Azure Emulator
156ecf/
157rcf/
158
159# Microsoft Azure ApplicationInsights config file
160ApplicationInsights.config
161
162# Windows Store app package directory
163AppPackages/
164BundleArtifacts/
165
166# Visual Studio cache files
167# files ending in .cache can be ignored
168*.[Cc]ache
169# but keep track of directories ending in .cache
170!*.[Cc]ache/
171
172# Others
173ClientBin/
174~$*
175*~
176*.dbmdl
177*.dbproj.schemaview
178*.pfx
179*.publishsettings
180orleans.codegen.cs
181
182/node_modules
183
184# RIA/Silverlight projects
185Generated_Code/
186
187# Backup & report files from converting an old project file
188# to a newer Visual Studio version. Backup files are not needed,
189# because we have git ;-)
190_UpgradeReport_Files/
191Backup*/
192UpgradeLog*.XML
193UpgradeLog*.htm
194
195# SQL Server files
196*.mdf
197*.ldf
198
199# Business Intelligence projects
200*.rdl.data
201*.bim.layout
202*.bim_*.settings
203
204# Microsoft Fakes
205FakesAssemblies/
206
207# GhostDoc plugin setting file
208*.GhostDoc.xml
209
210# Node.js Tools for Visual Studio
211.ntvs_analysis.dat
212
213# Visual Studio 6 build log
214*.plg
215
216# Visual Studio 6 workspace options file
217*.opt
218
219# Visual Studio LightSwitch build output
220**/*.HTMLClient/GeneratedArtifacts
221**/*.DesktopClient/GeneratedArtifacts
222**/*.DesktopClient/ModelManifest.xml
223**/*.Server/GeneratedArtifacts
224**/*.Server/ModelManifest.xml
225_Pvt_Extensions
226
227# Paket dependency manager
228.paket/paket.exe
229
230# FAKE - F# Make
231.fake/
Note: See TracBrowser for help on using the repository browser.