Skip to content

Commit 3e62af9

Browse files
authored
Merge pull request #496 from EngineHub/csharp
Csharp
2 parents 6660fa4 + 7d3b00f commit 3e62af9

File tree

18 files changed

+826
-41
lines changed

18 files changed

+826
-41
lines changed

.gitignore

Lines changed: 315 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,319 @@ true
2020
/test-backend/
2121
/nbproject/
2222
/dependency-reduced-pom.xml
23+
24+
desktop.ini
25+
26+
## Ignore Visual Studio temporary files, build results, and
27+
## files generated by popular Visual Studio add-ons.
28+
##
29+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
30+
31+
# User-specific files
32+
*.suo
33+
*.user
34+
*.userosscache
35+
*.sln.docstates
36+
37+
# User-specific files (MonoDevelop/Xamarin Studio)
38+
*.userprefs
39+
40+
# Build results
41+
[Dd]ebug/
42+
[Dd]ebugPublic/
43+
[Rr]elease/
44+
[Rr]eleases/
45+
x64/
46+
x86/
47+
bld/
48+
[Bb]in/
49+
[Oo]bj/
50+
[Ll]og/
51+
52+
# Visual Studio 2015/2017 cache/options directory
53+
.vs/
54+
# Uncomment if you have tasks that create the project's static files in wwwroot
55+
#wwwroot/
56+
57+
# Visual Studio 2017 auto generated files
58+
Generated\ Files/
59+
60+
# MSTest test Results
61+
[Tt]est[Rr]esult*/
62+
[Bb]uild[Ll]og.*
63+
64+
# NUNIT
65+
*.VisualState.xml
66+
TestResult.xml
67+
68+
# Build Results of an ATL Project
69+
[Dd]ebugPS/
70+
[Rr]eleasePS/
71+
dlldata.c
72+
73+
# Benchmark Results
74+
BenchmarkDotNet.Artifacts/
75+
76+
# .NET Core
77+
project.lock.json
78+
project.fragment.lock.json
79+
artifacts/
80+
**/Properties/launchSettings.json
81+
82+
# StyleCop
83+
StyleCopReport.xml
84+
85+
# Files built by Visual Studio
86+
*_i.c
87+
*_p.c
88+
*_i.h
89+
*.ilk
90+
*.meta
91+
*.obj
92+
*.pch
93+
*.pdb
94+
*.pgc
95+
*.pgd
96+
*.rsp
97+
*.sbr
98+
*.tlb
99+
*.tli
100+
*.tlh
101+
*.tmp
102+
*.tmp_proj
103+
*.log
104+
*.vspscc
105+
*.vssscc
106+
.builds
107+
*.pidb
108+
*.svclog
109+
*.scc
110+
111+
# Chutzpah Test files
112+
_Chutzpah*
113+
114+
# Visual Studio profiler
115+
*.psess
116+
*.vsp
117+
*.vspx
118+
*.sap
119+
120+
# Visual Studio Trace Files
121+
*.e2e
122+
123+
# TFS 2012 Local Workspace
124+
$tf/
125+
126+
# Guidance Automation Toolkit
127+
*.gpState
128+
129+
# ReSharper is a .NET coding add-in
130+
_ReSharper*/
131+
*.[Rr]e[Ss]harper
132+
*.DotSettings.user
133+
134+
# JustCode is a .NET coding add-in
135+
.JustCode
136+
137+
# TeamCity is a build add-in
138+
_TeamCity*
139+
140+
# DotCover is a Code Coverage Tool
141+
*.dotCover
142+
143+
# AxoCover is a Code Coverage Tool
144+
.axoCover/*
145+
!.axoCover/settings.json
146+
147+
# Visual Studio code coverage results
148+
*.coverage
149+
*.coveragexml
150+
151+
# NCrunch
152+
_NCrunch_*
153+
.*crunch*.local.xml
154+
nCrunchTemp_*
155+
156+
# MightyMoose
157+
*.mm.*
158+
AutoTest.Net/
159+
160+
# Web workbench (sass)
161+
.sass-cache/
162+
163+
# Installshield output folder
164+
[Ee]xpress/
165+
166+
# DocProject is a documentation generator add-in
167+
DocProject/buildhelp/
168+
DocProject/Help/*.HxT
169+
DocProject/Help/*.HxC
170+
DocProject/Help/*.hhc
171+
DocProject/Help/*.hhk
172+
DocProject/Help/*.hhp
173+
DocProject/Help/Html2
174+
DocProject/Help/html
175+
176+
# Publish Web Output
177+
*.[Pp]ublish.xml
178+
*.azurePubxml
179+
# Note: Comment the next line if you want to checkin your web deploy settings,
180+
# but database connection strings (with potential passwords) will be unencrypted
181+
*.pubxml
182+
*.publishproj
183+
184+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
185+
# checkin your Azure Web App publish settings, but sensitive information contained
186+
# in these scripts will be unencrypted
187+
PublishScripts/
188+
189+
# NuGet Packages
190+
*.nupkg
191+
# The packages folder can be ignored because of Package Restore
192+
**/[Pp]ackages/*
193+
# except build/, which is used as an MSBuild target.
194+
!**/[Pp]ackages/build/
195+
# Uncomment if necessary however generally it will be regenerated when needed
196+
#!**/[Pp]ackages/repositories.config
197+
# NuGet v3's project.json files produces more ignorable files
198+
*.nuget.props
199+
*.nuget.targets
200+
201+
# Microsoft Azure Build Output
202+
csx/
203+
*.build.csdef
204+
205+
# Microsoft Azure Emulator
206+
ecf/
207+
rcf/
208+
209+
# Windows Store app package directories and files
210+
AppPackages/
211+
BundleArtifacts/
212+
Package.StoreAssociation.xml
213+
_pkginfo.txt
214+
*.appx
215+
216+
# Visual Studio cache files
217+
# files ending in .cache can be ignored
218+
*.[Cc]ache
219+
# but keep track of directories ending in .cache
220+
!*.[Cc]ache/
221+
222+
# Others
223+
ClientBin/
224+
~$*
225+
*~
226+
*.dbmdl
227+
*.dbproj.schemaview
228+
*.jfm
229+
*.pfx
230+
*.publishsettings
231+
orleans.codegen.cs
232+
233+
# Including strong name files can present a security risk
234+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
235+
#*.snk
236+
237+
# Since there are multiple workflows, uncomment next line to ignore bower_components
238+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
239+
#bower_components/
240+
241+
# RIA/Silverlight projects
242+
Generated_Code/
243+
244+
# Backup & report files from converting an old project file
245+
# to a newer Visual Studio version. Backup files are not needed,
246+
# because we have git ;-)
247+
_UpgradeReport_Files/
248+
Backup*/
249+
UpgradeLog*.XML
250+
UpgradeLog*.htm
251+
ServiceFabricBackup/
252+
253+
# SQL Server files
254+
*.mdf
255+
*.ldf
256+
*.ndf
257+
258+
# Business Intelligence projects
259+
*.rdl.data
260+
*.bim.layout
261+
*.bim_*.settings
262+
*.rptproj.rsuser
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
303+
.cr/
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+
23337
.checkstyle
338+

WindowsLauncher/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5+
</startup>
6+
</configuration>

0 commit comments

Comments
 (0)