Skip to content

Commit 2edcb1f

Browse files
committed
Initial Commit
0 parents  commit 2edcb1f

File tree

3 files changed

+361
-0
lines changed

3 files changed

+361
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*.cs]
4+
5+
# IDE0063: Use simple 'using' statement
6+
csharp_prefer_simple_using_statement = false
7+
8+
# IDE0290: Use primary constructor
9+
csharp_style_prefer_primary_constructors = false

.gitignore

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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# DemoApp
2+
Demo and Example UI for TensorStack, just a project to keep me busy while I am out of action
3+

0 commit comments

Comments
 (0)