Skip to content

Commit 29a4503

Browse files
committed
first commit
0 parents  commit 29a4503

40 files changed

+8393
-0
lines changed

.gitignore

Lines changed: 305 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,305 @@
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+
# Custom
7+
.DS_Store
8+
dist/
9+
coverage/
10+
/tests/e2e/videos/
11+
/tests/e2e/screenshots/
12+
wwwroot/
13+
14+
# local env files
15+
.env.local
16+
.env.*.local
17+
18+
# User-specific files
19+
*.suo
20+
*.user
21+
*.userosscache
22+
*.sln.docstates
23+
24+
# User-specific files (MonoDevelop/Xamarin Studio)
25+
*.userprefs
26+
27+
# Build results
28+
[Dd]ebug/
29+
[Dd]ebugPublic/
30+
[Rr]elease/
31+
[Rr]eleases/
32+
x64/
33+
x86/
34+
bld/
35+
[Bb]in/
36+
[Oo]bj/
37+
[Ll]og/
38+
39+
# Log files
40+
npm-debug.log*
41+
yarn-debug.log*
42+
yarn-error.log*
43+
44+
# Visual Studio 2015 cache/options directory
45+
.vs/
46+
# Uncomment if you have tasks that create the project's static files in wwwroot
47+
#wwwroot/
48+
49+
# MSTest test Results
50+
[Tt]est[Rr]esult*/
51+
[Bb]uild[Ll]og.*
52+
53+
# NUNIT
54+
*.VisualState.xml
55+
TestResult.xml
56+
57+
# Build Results of an ATL Project
58+
[Dd]ebugPS/
59+
[Rr]eleasePS/
60+
dlldata.c
61+
62+
# .NET Core
63+
project.lock.json
64+
project.fragment.lock.json
65+
artifacts/
66+
#**/Properties/launchSettings.json
67+
68+
*_i.c
69+
*_p.c
70+
*_i.h
71+
*.ilk
72+
*.meta
73+
*.obj
74+
*.pch
75+
*.pdb
76+
*.pgc
77+
*.pgd
78+
*.rsp
79+
*.sbr
80+
*.tlb
81+
*.tli
82+
*.tlh
83+
*.tmp
84+
*.tmp_proj
85+
*.log
86+
*.vspscc
87+
*.vssscc
88+
.builds
89+
*.pidb
90+
*.svclog
91+
*.scc
92+
93+
# Chutzpah Test files
94+
_Chutzpah*
95+
96+
# Visual C++ cache files
97+
ipch/
98+
*.aps
99+
*.ncb
100+
*.opendb
101+
*.opensdf
102+
*.sdf
103+
*.cachefile
104+
*.VC.db
105+
*.VC.VC.opendb
106+
107+
# Visual Studio profiler
108+
*.psess
109+
*.vsp
110+
*.vspx
111+
*.sap
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+
# Visual Studio code coverage results
134+
*.coverage
135+
*.coveragexml
136+
137+
# NCrunch
138+
_NCrunch_*
139+
.*crunch*.local.xml
140+
nCrunchTemp_*
141+
142+
# MightyMoose
143+
*.mm.*
144+
AutoTest.Net/
145+
146+
# Web workbench (sass)
147+
.sass-cache/
148+
149+
# Installshield output folder
150+
[Ee]xpress/
151+
152+
# DocProject is a documentation generator add-in
153+
DocProject/buildhelp/
154+
DocProject/Help/*.HxT
155+
DocProject/Help/*.HxC
156+
DocProject/Help/*.hhc
157+
DocProject/Help/*.hhk
158+
DocProject/Help/*.hhp
159+
DocProject/Help/Html2
160+
DocProject/Help/html
161+
162+
# Click-Once directory
163+
publish/
164+
165+
# Publish Web Output
166+
*.[Pp]ublish.xml
167+
*.azurePubxml
168+
# TODO: Comment the next line if you want to checkin your web deploy settings
169+
# but database connection strings (with potential passwords) will be unencrypted
170+
*.pubxml
171+
*.publishproj
172+
173+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
174+
# checkin your Azure Web App publish settings, but sensitive information contained
175+
# in these scripts will be unencrypted
176+
PublishScripts/
177+
178+
# NuGet Packages
179+
*.nupkg
180+
# The packages folder can be ignored because of Package Restore
181+
**/packages/*
182+
# except build/, which is used as an MSBuild target.
183+
!**/packages/build/
184+
# Uncomment if necessary however generally it will be regenerated when needed
185+
#!**/packages/repositories.config
186+
# NuGet v3's project.json files produces more ignorable files
187+
*.nuget.props
188+
*.nuget.targets
189+
190+
# Microsoft Azure Build Output
191+
csx/
192+
*.build.csdef
193+
194+
# Microsoft Azure Emulator
195+
ecf/
196+
rcf/
197+
198+
# Windows Store app package directories and files
199+
AppPackages/
200+
BundleArtifacts/
201+
Package.StoreAssociation.xml
202+
_pkginfo.txt
203+
204+
# Visual Studio cache files
205+
# files ending in .cache can be ignored
206+
*.[Cc]ache
207+
# but keep track of directories ending in .cache
208+
#!*.[Cc]ache/
209+
210+
# Others
211+
ClientBin/
212+
~$*
213+
*~
214+
*.dbmdl
215+
*.dbproj.schemaview
216+
*.jfm
217+
*.pfx
218+
*.publishsettings
219+
orleans.codegen.cs
220+
221+
# Since there are multiple workflows, uncomment next line to ignore bower_components
222+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
223+
#bower_components/
224+
225+
# RIA/Silverlight projects
226+
Generated_Code/
227+
228+
# Backup & report files from converting an old project file
229+
# to a newer Visual Studio version. Backup files are not needed,
230+
# because we have git ;-)
231+
_UpgradeReport_Files/
232+
Backup*/
233+
UpgradeLog*.XML
234+
UpgradeLog*.htm
235+
236+
# SQL Server files
237+
*.mdf
238+
*.ldf
239+
*.ndf
240+
241+
# Business Intelligence projects
242+
*.rdl.data
243+
*.bim.layout
244+
*.bim_*.settings
245+
246+
# Microsoft Fakes
247+
FakesAssemblies/
248+
249+
# GhostDoc plugin setting file
250+
*.GhostDoc.xml
251+
252+
# Node.js Tools for Visual Studio
253+
.ntvs_analysis.dat
254+
node_modules/
255+
256+
# Typescript v1 declaration files
257+
typings/
258+
259+
# Visual Studio 6 build log
260+
*.plg
261+
262+
# Visual Studio 6 workspace options file
263+
*.opt
264+
265+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
266+
*.vbw
267+
268+
# Visual Studio LightSwitch build output
269+
**/*.HTMLClient/GeneratedArtifacts
270+
**/*.DesktopClient/GeneratedArtifacts
271+
**/*.DesktopClient/ModelManifest.xml
272+
**/*.Server/GeneratedArtifacts
273+
**/*.Server/ModelManifest.xml
274+
_Pvt_Extensions
275+
276+
# Paket dependency manager
277+
.paket/paket.exe
278+
paket-files/
279+
280+
# FAKE - F# Make
281+
.fake/
282+
283+
# JetBrains Rider
284+
.idea/
285+
*.sln.iml
286+
287+
# CodeRush
288+
.cr/
289+
290+
# Python Tools for Visual Studio (PTVS)
291+
__pycache__/
292+
*.pyc
293+
294+
# Cake - Uncomment if you are using it
295+
# tools/**
296+
# !tools/packages.config
297+
298+
# Telerik's JustMock configuration file
299+
*.jmconfig
300+
301+
# BizTalk build output
302+
*.btp.cs
303+
*.btm.cs
304+
*.odx.cs
305+
*.xsd.cs

.vscode/launch.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": ".NET Core Launch (console)",
10+
"type": "coreclr",
11+
"request": "launch",
12+
"preLaunchTask": "build",
13+
"program": "${workspaceFolder}/ParcelTemplate/bin/Debug/net5/ParcelTemplate.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/ParcelTemplate",
16+
"console": "internalConsole",
17+
"stopAtEntry": false,
18+
"internalConsoleOptions": "openOnSessionStart",
19+
"env": {
20+
"ASPNETCORE_ENVIRONMENT": "Development"
21+
}
22+
},
23+
{
24+
"name": ".NET Core Launch (web)",
25+
"type": "coreclr",
26+
"request": "launch",
27+
"preLaunchTask": "build",
28+
"program": "${workspaceFolder}/ParcelTemplate/bin/Debug/net5/ParcelTemplate.dll",
29+
"args": [],
30+
"cwd": "${workspaceFolder}/ParcelTemplate",
31+
"stopAtEntry": false,
32+
"internalConsoleOptions": "openOnSessionStart",
33+
"launchBrowser": {
34+
"enabled": true,
35+
"args": "${auto-detect-url}",
36+
"windows": {
37+
"command": "cmd.exe",
38+
"args": "/C start ${auto-detect-url}"
39+
},
40+
"osx": {
41+
"command": "open"
42+
},
43+
"linux": {
44+
"command": "xdg-open"
45+
}
46+
},
47+
"env": {
48+
"ASPNETCORE_ENVIRONMENT": "Development"
49+
},
50+
"sourceFileMap": {
51+
"/Views": "${workspaceFolder}/Views"
52+
}
53+
},
54+
{
55+
"name": ".NET Core Attach",
56+
"type": "coreclr",
57+
"request": "attach",
58+
"processId": "${command:pickProcess}"
59+
}
60+
]
61+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"command": "dotnet build",
9+
"type": "shell",
10+
"group": "build",
11+
"presentation": {
12+
"reveal": "silent"
13+
},
14+
"problemMatcher": "$msCompile"
15+
}
16+
]
17+
}

NuGet.Config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
6+
</packageSources>
7+
</configuration>

0 commit comments

Comments
 (0)