Skip to content
This repository was archived by the owner on Jul 27, 2022. It is now read-only.

Commit 90f8180

Browse files
committed
initial commit
0 parents  commit 90f8180

5 files changed

+656
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)