Skip to content

Commit e5813ed

Browse files
committed
init
0 parents  commit e5813ed

File tree

3 files changed

+360
-0
lines changed

3 files changed

+360
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
7+
[*.{cs,xaml}]
8+
# In Visual Studio 2022 and Rider (2025), even if utf-8 is specified, new files will have bom. so set this to avoid confusion
9+
charset = utf-8-bom
10+
indent_style = space
11+
indent_size = 4
12+
# to distinguish
13+
tab_width = 8

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

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

0 commit comments

Comments
 (0)