Skip to content

Commit 695ac5e

Browse files
committed
Initialize
0 parents  commit 695ac5e

File tree

2 files changed

+304
-0
lines changed

2 files changed

+304
-0
lines changed

.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

+241
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
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+
# Build results
11+
[Dd]ebug/
12+
[Dd]ebugPublic/
13+
[Rr]elease/
14+
[Rr]eleases/
15+
x64/
16+
x86/
17+
build/
18+
bld/
19+
[Bb]in/
20+
[Oo]bj/
21+
22+
# Visual Studio 2015/2017 cache/options directory
23+
.vs/
24+
25+
# JetBrains Rider
26+
.idea
27+
28+
# Roslyn cache directories
29+
*.ide/
30+
31+
# MSTest test Results
32+
[Tt]est[Rr]esult*/
33+
[Bb]uild[Ll]og.*
34+
35+
#NUNIT
36+
*.VisualState.xml
37+
TestResult.xml
38+
39+
# Build Results of an ATL Project
40+
[Dd]ebugPS/
41+
[Rr]eleasePS/
42+
dlldata.c
43+
44+
*_i.c
45+
*_p.c
46+
*_i.h
47+
*.ilk
48+
*.meta
49+
*.obj
50+
*.pch
51+
*.pdb
52+
*.pgc
53+
*.pgd
54+
*.rsp
55+
*.sbr
56+
*.tlb
57+
*.tli
58+
*.tlh
59+
*.tmp
60+
*.tmp_proj
61+
*.log
62+
*.vspscc
63+
*.vssscc
64+
.builds
65+
*.pidb
66+
*.svclog
67+
*.scc
68+
69+
# Chutzpah Test files
70+
_Chutzpah*
71+
72+
# Visual C++ cache files
73+
ipch/
74+
*.aps
75+
*.ncb
76+
*.opensdf
77+
*.sdf
78+
*.cachefile
79+
80+
# Visual Studio profiler
81+
*.psess
82+
*.vsp
83+
*.vspx
84+
85+
# TFS 2012 Local Workspace
86+
$tf/
87+
88+
# Guidance Automation Toolkit
89+
*.gpState
90+
91+
# ReSharper is a .NET coding add-in
92+
_ReSharper*/
93+
*.[Rr]e[Ss]harper
94+
*.DotSettings.user
95+
96+
# JustCode is a .NET coding addin-in
97+
.JustCode
98+
99+
# TeamCity is a build add-in
100+
_TeamCity*
101+
102+
# DotCover is a Code Coverage Tool
103+
*.dotCover
104+
105+
# NCrunch
106+
_NCrunch_*
107+
.*crunch*.local.xml
108+
109+
# MightyMoose
110+
*.mm.*
111+
AutoTest.Net/
112+
113+
# Web workbench (sass)
114+
.sass-cache/
115+
116+
# Installshield output folder
117+
[Ee]xpress/
118+
119+
# DocProject is a documentation generator add-in
120+
DocProject/buildhelp/
121+
DocProject/Help/*.HxT
122+
DocProject/Help/*.HxC
123+
DocProject/Help/*.hhc
124+
DocProject/Help/*.hhk
125+
DocProject/Help/*.hhp
126+
DocProject/Help/Html2
127+
DocProject/Help/html
128+
129+
# Click-Once directory
130+
publish/
131+
132+
# Publish Web Output
133+
*.[Pp]ublish.xml
134+
*.azurePubxml
135+
# TODO: Comment the next line if you want to checkin your web deploy settings
136+
# but database connection strings (with potential passwords) will be unencrypted
137+
*.pubxml
138+
*.publishproj
139+
140+
# NuGet Packages
141+
*.nupkg
142+
*.snupkg
143+
# The packages folder can be ignored because of Package Restore
144+
**/packages/*
145+
# except build/, which is used as an MSBuild target.
146+
!**/packages/build/
147+
# If using the old MSBuild-Integrated Package Restore, uncomment this:
148+
#!**/packages/repositories.config
149+
150+
# Windows Azure Build Output
151+
csx/
152+
*.build.csdef
153+
154+
# Windows Store app package directory
155+
AppPackages/
156+
157+
# Others
158+
sql/
159+
*.Cache
160+
ClientBin/
161+
[Ss]tyle[Cc]op.*
162+
~$*
163+
*~
164+
*.dbmdl
165+
*.dbproj.schemaview
166+
*.pfx
167+
*.publishsettings
168+
node_modules/
169+
170+
# RIA/Silverlight projects
171+
Generated_Code/
172+
173+
# Backup & report files from converting an old project file
174+
# to a newer Visual Studio version. Backup files are not needed,
175+
# because we have git ;-)
176+
_UpgradeReport_Files/
177+
Backup*/
178+
UpgradeLog*.XML
179+
UpgradeLog*.htm
180+
181+
# SQL Server files
182+
*.mdf
183+
*.ldf
184+
185+
# Business Intelligence projects
186+
*.rdl.data
187+
*.bim.layout
188+
*.bim_*.settings
189+
190+
# Microsoft Fakes
191+
FakesAssemblies/
192+
193+
# =========================
194+
# Operating System Files
195+
# =========================
196+
197+
# OSX
198+
# =========================
199+
200+
.DS_Store
201+
.AppleDouble
202+
.LSOverride
203+
204+
# Thumbnails
205+
._*
206+
207+
# Files that might appear on external disk
208+
.Spotlight-V100
209+
.Trashes
210+
211+
# Directories potentially created on remote AFP share
212+
.AppleDB
213+
.AppleDesktop
214+
Network Trash Folder
215+
Temporary Items
216+
.apdisk
217+
218+
# Windows
219+
# =========================
220+
221+
# Windows image file caches
222+
Thumbs.db
223+
ehthumbs.db
224+
225+
# Folder config file
226+
Desktop.ini
227+
228+
# Recycle Bin used on file shares
229+
$RECYCLE.BIN/
230+
231+
# Windows Installer files
232+
*.cab
233+
*.msi
234+
*.msm
235+
*.msp
236+
237+
# Windows shortcuts
238+
*.lnk
239+
240+
#React.JS
241+
.module-cache

0 commit comments

Comments
 (0)