Skip to content

Commit 93caf42

Browse files
committed
Introduce GoldSim Website 4.0.0
2 parents cba60fb + 382c38d commit 93caf42

File tree

284 files changed

+23120
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+23120
-0
lines changed

.gitignore

Lines changed: 375 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,375 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# Project specific
5+
node_modules/*
6+
7+
# These are needed, however, they're generated so don't need/want to track
8+
wwwroot/Shared/**/*
9+
10+
# User-specific files
11+
*.suo
12+
*.user
13+
*.userosscache
14+
*.sln.docstates
15+
16+
# User-specific files (MonoDevelop/Xamarin Studio)
17+
*.userprefs
18+
19+
# Build results
20+
[Dd]ebug/
21+
[Dd]ebugPublic/
22+
[Rr]elease/
23+
[Rr]eleases/
24+
x64/
25+
x86/
26+
bld/
27+
[Bb]in/
28+
[Oo]bj/
29+
[Ll]og/
30+
31+
# Visual Studio 2015 cache/options directory
32+
.vs/
33+
# Uncomment if you have tasks that create the project's static files in wwwroot
34+
# wwwroot/
35+
36+
# Roslyn cache directories
37+
*.ide/
38+
39+
# MSTest test Results
40+
[Tt]est[Rr]esult*/
41+
[Bb]uild[Ll]og.*
42+
43+
# NUNIT
44+
*.VisualState.xml
45+
TestResult.xml
46+
47+
# Build Results of an ATL Project
48+
[Dd]ebugPS/
49+
[Rr]eleasePS/
50+
dlldata.c
51+
52+
# DNX
53+
project.lock.json
54+
artifacts/
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+
93+
# Visual Studio profiler
94+
*.psess
95+
*.vsp
96+
*.vspx
97+
*.sap
98+
99+
# TFS 2012 Local Workspace
100+
$tf/
101+
102+
# Guidance Automation Toolkit
103+
*.gpState
104+
105+
# ReSharper is a .NET coding add-in
106+
_ReSharper*/
107+
*.[Rr]e[Ss]harper
108+
*.DotSettings.user
109+
110+
# JustCode is a .NET coding add-in
111+
.JustCode
112+
113+
# TeamCity is a build add-in
114+
_TeamCity*
115+
116+
# DotCover is a Code Coverage Tool
117+
*.dotCover
118+
119+
# NCrunch
120+
_NCrunch_*
121+
.*crunch*.local.xml
122+
nCrunchTemp_*
123+
124+
# MightyMoose
125+
*.mm.*
126+
AutoTest.Net/
127+
128+
# Sass
129+
.sass-cache/
130+
131+
# Installshield output folder
132+
[Ee]xpress/
133+
134+
# DocProject is a documentation generator add-in
135+
DocProject/buildhelp/
136+
DocProject/Help/*.HxT
137+
DocProject/Help/*.HxC
138+
DocProject/Help/*.hhc
139+
DocProject/Help/*.hhk
140+
DocProject/Help/*.hhp
141+
DocProject/Help/Html2
142+
DocProject/Help/html
143+
144+
# Directories
145+
publish/
146+
bin/
147+
obj/
148+
TestResults/
149+
150+
# Publish Web Output
151+
*.[Pp]ublish.xml
152+
*.azurePubxml
153+
# TODO: Comment the next line if you want to checkin your web deploy settings
154+
# but database connection strings (with potential passwords) will be unencrypted
155+
*.pubxml
156+
*.publishproj
157+
158+
# NuGet Packages
159+
*.nupkg
160+
# The packages folder can be ignored because of Package Restore
161+
**/packages/*
162+
# except build/, which is used as an MSBuild target.
163+
!**/packages/build/
164+
# Uncomment if necessary however generally it will be regenerated when needed
165+
#!**/packages/repositories.config
166+
# NuGet v3's project.json files produces more ignoreable files
167+
*.nuget.props
168+
*.nuget.targets
169+
170+
# Microsoft Azure Build Output
171+
csx/
172+
*.build.csdef
173+
174+
# Microsoft Azure Emulator
175+
ecf/
176+
rcf/
177+
178+
# Microsoft Azure ApplicationInsights config file
179+
# ApplicationInsights.config
180+
181+
# Windows Store app package directories and files
182+
AppPackages/
183+
BundleArtifacts/
184+
Package.StoreAssociation.xml
185+
_pkginfo.txt
186+
187+
# Visual Studio cache files
188+
# files ending in .cache can be ignored
189+
*.[Cc]ache
190+
# but keep track of directories ending in .cache
191+
!*.[Cc]ache/
192+
193+
# Others
194+
ClientBin/
195+
~$*
196+
*~
197+
*.dbmdl
198+
*.dbproj.schemaview
199+
*.pfx
200+
*.publishsettings
201+
node_modules/
202+
orleans.codegen.cs
203+
204+
# Since there are multiple workflows, uncomment next line to ignore bower_components
205+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
206+
# bower_components/
207+
208+
# RIA/Silverlight projects
209+
Generated_Code/
210+
211+
# Backup & report files from converting an old project file
212+
# to a newer Visual Studio version. Backup files are not needed,
213+
# because we have git ;-)
214+
_UpgradeReport_Files/
215+
Backup*/
216+
UpgradeLog*.XML
217+
UpgradeLog*.htm
218+
219+
# SQL Server and database files
220+
*.mdf
221+
*.ldf
222+
*.sql
223+
*.sqlite
224+
225+
# Business Intelligence projects
226+
*.rdl.data
227+
*.bim.layout
228+
*.bim_*.settings
229+
230+
# Microsoft Fakes
231+
FakesAssemblies/
232+
233+
# GhostDoc plugin setting file
234+
*.GhostDoc.xml
235+
236+
# Node.js Tools for Visual Studio
237+
.ntvs_analysis.dat
238+
239+
# Visual Studio 6 build log
240+
*.plg
241+
242+
# Visual Studio 6 workspace options file
243+
*.opt
244+
245+
# Visual Studio LightSwitch build output
246+
**/*.HTMLClient/GeneratedArtifacts
247+
**/*.DesktopClient/GeneratedArtifacts
248+
**/*.DesktopClient/ModelManifest.xml
249+
**/*.Server/GeneratedArtifacts
250+
**/*.Server/ModelManifest.xml
251+
_Pvt_Extensions
252+
253+
# Paket dependency manager
254+
.paket/paket.exe
255+
256+
# FAKE - F# Make
257+
.fake/
258+
259+
# JetBrains Rider
260+
.idea/
261+
*.sln.iml
262+
263+
# Compiled source
264+
*.com
265+
*.class
266+
*.dll
267+
*.exe
268+
*.o
269+
*.so
270+
271+
# Packages
272+
*.7z
273+
*.dmg
274+
*.gz
275+
*.iso
276+
*.jar
277+
*.rar
278+
*.tar
279+
*.zip
280+
281+
# Logs
282+
logs
283+
*.log
284+
npm-debug.log*
285+
yarn-debug.log*
286+
yarn-error.log*
287+
288+
# OS generated files
289+
.DS_Store
290+
.DS_Store?
291+
._*
292+
.Spotlight-V100
293+
.Trashes
294+
# Icon?
295+
ehthumbs.db
296+
Thumbs.db
297+
298+
# Runtime data
299+
pids
300+
*.pid
301+
*.seed
302+
*.pid.lock
303+
304+
# Directory for instrumented libs generated by jscoverage/JSCover
305+
lib-cov
306+
307+
# Coverage directory used by tools like istanbul
308+
coverage
309+
310+
# nyc test coverage
311+
.nyc_output
312+
313+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
314+
.grunt
315+
316+
# Bower dependency directory (https://bower.io/)
317+
bower_components
318+
319+
# node-waf configuration
320+
.lock-wscript
321+
322+
# Compiled binary addons (http://nodejs.org/api/addons.html)
323+
build/Release
324+
325+
# Dependency directories
326+
node_modules/
327+
jspm_packages/
328+
329+
# Typescript v1 declaration files
330+
typings/
331+
332+
# Optional npm cache directory
333+
.npm
334+
335+
# Optional eslint cache
336+
.eslintcache
337+
338+
# Optional REPL history
339+
.node_repl_history
340+
341+
# Output of 'npm pack'
342+
*.tgz
343+
344+
# Yarn Integrity file
345+
.yarn-integrity
346+
347+
# dotenv environment variables file
348+
.env
349+
350+
# Application settings
351+
**/connectionStrings.*
352+
**/smtp.config
353+
**/appSettings.config
354+
355+
# Gulp build process files
356+
/node_modules
357+
/bower_components
358+
**/*/.sass-cache
359+
*.sass-cache*
360+
gulpSecrets.js
361+
362+
# Custom
363+
grunt-config.json
364+
config.yml
365+
/_site
366+
assets/logo.png
367+
compilerconfig.json
368+
compilerconfig.json.defaults
369+
Common/Global/
370+
\!Admin/
371+
wwwroot/Images/Content/
372+
Downloads
373+
wwwroot/Images/Courses/
374+
Help/
375+
Media/
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace {{namespace}}
4+
{
5+
public class {{name}}
6+
{
7+
}
8+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export class {{name}} {
2+
3+
}

0 commit comments

Comments
 (0)