Skip to content

Commit 1994e65

Browse files
committed
Update git helper files
1 parent 1ff4662 commit 1994e65

File tree

2 files changed

+275
-31
lines changed

2 files changed

+275
-31
lines changed

.gitattributes

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This file is understood by git 1.7.2+.
2+
3+
# Windows specific files should always be crlf on checkout
4+
*.bat text eol=crlf
5+
*.cmd text eol=crlf
6+
*.ps1 text eol=crlf
7+
8+
# Check out the following as ln always for osx/linux/cygwin
9+
*.sh text eol=lf
10+
11+
# Opt in the following types to always normalize line endings
12+
# on checkin and always use native endings on checkout.
13+
*.config text
14+
*.cs text diff=csharp
15+
*.csproj text
16+
*.md text
17+
*.msbuild text
18+
*.nuspec text
19+
*.pp text
20+
*.ps1 text
21+
*.sln text
22+
*.tt text
23+
*.txt text
24+
*.xaml text
25+
*.xml text
26+
27+
# Binary files
28+
*.bmp binary
29+
*.jpeg binary
30+
*.jpg binary
31+
*.nupkg binary
32+
*.png binary
33+
*.sdf binary

.gitignore

Lines changed: 242 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,262 @@
1-
*.cache
2-
*.nupkg
3-
*.nuget.props
4-
*.nuget.targets
5-
6-
## Xamarin stuff
7-
Components
8-
[Pp]ackages
9-
*.userprefs
10-
Resource.designer.cs
11-
121
## Ignore Visual Studio temporary files, build results, and
132
## files generated by popular Visual Studio add-ons.
143

4+
## Android Auto-generated files
5+
Resource.designer.cs
6+
157
# User-specific files
168
*.suo
179
*.user
10+
*.userosscache
1811
*.sln.docstates
19-
*.apk
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
2015

2116
# Build results
2217
[Dd]ebug/
2318
[Dd]ebugPublic/
2419
[Rr]elease/
20+
[Rr]eleases/
2521
x64/
22+
x86/
2623
build/
2724
bld/
2825
[Bb]in/
2926
[Oo]bj/
27+
28+
# Visual Studo 2015 cache/options directory
29+
.vs/
30+
31+
# MSTest test Results
32+
[Tt]est[Rr]esult*/
33+
[Tt]est[Rr]esult*
34+
[Bb]uild[Ll]og.*
35+
36+
# NUNIT
37+
*.VisualState.xml
38+
TestResult.xml
39+
40+
# Build Results of an ATL Project
41+
[Dd]ebugPS/
42+
[Rr]eleasePS/
43+
dlldata.c
44+
45+
# .NET Core
46+
project.lock.json
47+
project.fragment.lock.json
48+
artifacts/
49+
**/Properties/launchSettings.json
50+
51+
*_i.c
52+
*_p.c
53+
*_i.h
54+
*.ilk
55+
*.meta
56+
*.obj
57+
*.pch
58+
*.pdb
59+
*.pgc
60+
*.pgd
61+
*.rsp
62+
*.sbr
63+
*.tlb
64+
*.tli
65+
*.tlh
66+
*.tmp
67+
*.tmp_proj
68+
*.log
69+
*.vspscc
70+
*.vssscc
71+
.builds
72+
*.pidb
73+
*.svclog
74+
*.scc
75+
*.exe
3076
*.bak
31-
nuget.exe
32-
.vs/config/applicationhost.config
33-
*.DS_Store
34-
*.bak
35-
.vs/*
36-
*.ide
37-
*.lock.json
38-
*.droidres.db
39-
UpgradeLog*
77+
*.cache
78+
*.lib
79+
80+
# Chutzpah Test files
81+
_Chutzpah*
82+
83+
# Visual C++ cache files
84+
ipch/
85+
*.aps
86+
*.ncb
87+
*.opensdf
88+
*.sdf
89+
*.cachefile
90+
91+
# Visual Studio profiler
92+
*.psess
93+
*.vsp
94+
*.vspx
95+
96+
# TFS 2012 Local Workspace
97+
$tf/
98+
99+
# Guidance Automation Toolkit
100+
*.gpState
101+
102+
# ReSharper is a .NET coding add-in
103+
_ReSharper*/
104+
*.[Rr]e[Ss]harper
105+
*.DotSettings.user
106+
107+
# JustCode is a .NET coding addin-in
108+
.JustCode
109+
110+
# TeamCity is a build add-in
111+
_TeamCity*
112+
113+
# DotCover is a Code Coverage Tool
114+
*.dotCover
115+
116+
# NCrunch
117+
_NCrunch_*
118+
.*crunch*.local.xml
119+
*.ncrunchproject
120+
121+
# MightyMoose
122+
*.mm.*
123+
AutoTest.Net/
124+
125+
# Web workbench (sass)
126+
.sass-cache/
127+
128+
# Installshield output folder
129+
[Ee]xpress/
130+
131+
# DocProject is a documentation generator add-in
132+
DocProject/buildhelp/
133+
DocProject/Help/*.HxT
134+
DocProject/Help/*.HxC
135+
DocProject/Help/*.hhc
136+
DocProject/Help/*.hhk
137+
DocProject/Help/*.hhp
138+
DocProject/Help/Html2
139+
DocProject/Help/html
140+
141+
# Click-Once directory
142+
publish/
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+
# NuGet Packages
153+
*.nupkg
154+
# The packages folder can be ignored because of Package Restore
155+
**/packages/*
156+
# except build/, which is used as an MSBuild target.
157+
!**/packages/build/
158+
# Uncomment if necessary however generally it will be regenerated when needed
159+
#!**/packages/repositories.config
160+
# NuGet v3's project.json files produces more ignoreable files
161+
*.nuget.props
162+
*.nuget.targets
163+
164+
#Allow NuGet.exe (do not ignore)
165+
!NuGet.exe
166+
*.orig
167+
168+
# Windows Azure Build Output
169+
csx/
170+
*.build.csdef
171+
172+
# Windows Store app package directory
173+
AppPackages/
174+
175+
# Others
176+
*.[Cc]ache
177+
ClientBin/
178+
[Ss]tyle[Cc]op.*
179+
~$*
180+
*~
181+
*.dbmdl
182+
*.dbproj.schemaview
183+
*.pfx
184+
*.publishsettings
185+
node_modules/
186+
bower_components/
187+
188+
# RIA/Silverlight projects
189+
Generated_Code/
190+
191+
# Backup & report files from converting an old project file
192+
# to a newer Visual Studio version. Backup files are not needed,
193+
# because we have git ;-)
194+
_UpgradeReport_Files/
195+
Backup*/
196+
UpgradeLog*.XML
197+
UpgradeLog*.htm
198+
199+
# SQL Server files
200+
*.mdf
201+
*.ldf
202+
203+
# Business Intelligence projects
204+
*.rdl.data
205+
*.bim.layout
206+
*.bim_*.settings
207+
208+
# Microsoft Fakes
209+
FakesAssemblies/
210+
211+
# Node.js Tools for Visual Studio
212+
.ntvs_analysis.dat
213+
214+
# Visual Studio 6 build log
215+
*.plg
216+
217+
# Visual Studio 6 workspace options file
218+
*.opt
219+
220+
#ignore thumbnails created by windows
221+
Thumbs.db
222+
223+
# Xcode
224+
.DS_Store
225+
*/build/*
226+
*.pbxuser
227+
!default.pbxuser
228+
*.mode1v3
229+
!default.mode1v3
230+
*.mode2v3
231+
!default.mode2v3
232+
*.perspectivev3
233+
!default.perspectivev3
234+
xcuserdata
235+
profile
236+
*.moved-aside
237+
DerivedData
238+
.idea/
239+
*.hmap
240+
*.xccheckout
241+
242+
#CocoaPods
243+
Pods
244+
nuspec/nuget.exe
245+
246+
# NuGet
247+
packages/
248+
repositories.config
249+
250+
#Build
40251
project.lock.json
41-
source/FFImageLoading.Common/AssemblyTFMAttribute.cs
42-
source/FFImageLoading.Forms/AssemblyTFMAttribute.cs
43-
source/FFImageLoading.Mock/AssemblyTFMAttribute.cs
44-
source/FFImageLoading.Svg.Forms/AssemblyTFMAttribute.cs
45-
source/FFImageLoading.Svg/AssemblyTFMAttribute.cs
46-
source/FFImageLoading.Transformations/AssemblyTFMAttribute.cs
47-
source/FFImageLoading.Forms.Tizen/.vs/FFImageLoading.Forms.Tizen/xs/UserPrefs.xml
48-
.vs/
49-
.mfractor/
252+
tools/*
253+
!tools/packages.config
254+
artifacts/
255+
*.nupkg
256+
*.binlog
257+
258+
#linting
259+
.sonarqube/
50260

51-
samples/ImageLoading.Forms.Sample/Shared/FodyWeavers.xsd
261+
# dotnet tools
262+
.store/

0 commit comments

Comments
 (0)