Skip to content

Commit 1ff5f92

Browse files
committed
init repo
1 parent 0ac6d40 commit 1ff5f92

File tree

4 files changed

+323
-0
lines changed

4 files changed

+323
-0
lines changed

Diff for: .gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
VB/* linguist-vendored
2+
scripts linguist-vendored
3+
*.css linguist-detectable=false
4+
*.aff linguist-detectable=false

Diff for: .gitignore

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

Diff for: LICENSE

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This code example is provided "as is" without warranty of any kind. Developer Express Inc ("DevExpress") disclaims all warranties,
2+
either express or implied, including the warranties of merchantability and fitness for a particular purpose.
3+
4+
For licensing terms and conditions of DevExpress product(s) required for, or associated with the use of this code example,
5+
please refer to the applicable End-User License Agreement at https://www.devexpress.com/Support/licensingfaq.xml

Diff for: config.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"autoGenerateVb": false,
3+
"runOnWeb": false
4+
}

0 commit comments

Comments
 (0)