Skip to content
This repository was archived by the owner on Nov 16, 2021. It is now read-only.

Commit 72bd4fd

Browse files
committedNov 15, 2018
Initial commit
0 parents  commit 72bd4fd

23 files changed

+2366
-0
lines changed
 

‎.gitignore

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

‎.paket/paket.exe

62.8 KB
Binary file not shown.

‎Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM microsoft/dotnet:2.1-aspnetcore-runtime-alpine
2+
COPY deploy /
3+
WORKDIR /WhatDid
4+
EXPOSE 8085
5+
CMD ["dotnet", "WhatDid.dll"]

‎Dockerfile.web

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM microsoft/dotnet:2.1-aspnetcore-runtime-alpine
2+
COPY deploy /
3+
WORKDIR /WhatDid
4+
CMD ["dotnet", "WhatDid.dll"]

‎WhatDid.sln

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 15
3+
VisualStudioVersion = 15.0.26124.0
4+
MinimumVisualStudioVersion = 15.0.26124.0
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Debug|x64 = Debug|x64
9+
Debug|x86 = Debug|x86
10+
Release|Any CPU = Release|Any CPU
11+
Release|x64 = Release|x64
12+
Release|x86 = Release|x86
13+
EndGlobalSection
14+
GlobalSection(SolutionProperties) = preSolution
15+
HideSolutionNode = FALSE
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
EndGlobalSection
19+
EndGlobal

0 commit comments

Comments
 (0)
This repository has been archived.