Skip to content

Commit e385c48

Browse files
authored
Merge pull request #16 from ekonbenefits/vs2017-dotnetcore
Vs2017 dotnetcore
2 parents 366b3bd + 108ac2e commit e385c48

Some content is hidden

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

75 files changed

+2091
-1299
lines changed

.appveyor.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
image: Visual Studio 2017
2+
3+
configuration: Debug
4+
5+
build: off
6+
7+
build_script:
8+
- cmd: set PATH=%PATH%;C:\Program Files (x86)\Microsoft SDKs\F#\4.1\Framework\v4.0\
9+
- cmd: fsi --exec ./build.fsx
10+
11+
test: off
12+
13+
artifacts:
14+
- path: '**\bin\*\*.nupkg'
15+
16+
skip_branch_with_pr: true
17+
18+
deploy:
19+
- provider: NuGet
20+
server: https://www.myget.org/F/dynamitey-ci/api/v2/package
21+
api_key:
22+
secure: yKbBrG0QiTfXUvND1/cMMNHxH1Bgal5g7c0pWGwqvjCtKGTtWkpvE2KlZb6E2ZgB
23+
skip_symbols: false
24+
symbol_server: https://www.myget.org/F/dynamitey-ci/symbols/api/v2/package
25+
26+
for:
27+
- branches:
28+
except:
29+
- /v.*/
30+
environment:
31+
vsuffix: alpha$(APPVEYOR_BUILD_NUMBER)
32+
is_prerelease: true
33+
- branches:
34+
only:
35+
- /v.*-beta/
36+
environment:
37+
vsuffix: beta$(APPVEYOR_BUILD_NUMBER)
38+
is_prerelease: true
39+
- branches:
40+
only:
41+
- /v[\d,.]*/
42+
configuration: Release
43+
environment:
44+
vsuffix: $(APPVEYOR_BUILD_NUMBER)
45+
is_prerelease: false

.ci/codebetterci.proj

-17
This file was deleted.

.ci/nunit.sh

-15
This file was deleted.

.gitignore

+158-150
Original file line numberDiff line numberDiff line change
@@ -1,150 +1,158 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
f
4-
# User-specific files
5-
*.suo
6-
*.user
7-
*.sln.docstates
8-
9-
# Build results
10-
11-
[Dd]ebug/
12-
[Rr]elease/
13-
x64/
14-
build/
15-
[Bb]in/
16-
[Oo]bj/
17-
18-
# MSTest test Results
19-
[Tt]est[Rr]esult*/
20-
[Bb]uild[Ll]og.*
21-
22-
*_i.c
23-
*_p.c
24-
*.ilk
25-
*.meta
26-
*.obj
27-
*.pch
28-
*.pdb
29-
*.pgc
30-
*.pgd
31-
*.rsp
32-
*.sbr
33-
*.tlb
34-
*.tli
35-
*.tlh
36-
*.tmp
37-
*.tmp_proj
38-
*.log
39-
*.vspscc
40-
*.vssscc
41-
.builds
42-
*.pidb
43-
*.log
44-
*.scc
45-
46-
# Visual C++ cache files
47-
ipch/
48-
*.aps
49-
*.ncb
50-
*.opensdf
51-
*.sdf
52-
*.cachefile
53-
54-
# Visual Studio profiler
55-
*.psess
56-
*.vsp
57-
*.vspx
58-
59-
# Guidance Automation Toolkit
60-
*.gpState
61-
62-
# ReSharper is a .NET coding add-in
63-
_ReSharper*/
64-
*.[Rr]e[Ss]harper
65-
66-
# TeamCity is a build add-in
67-
_TeamCity*
68-
69-
# DotCover is a Code Coverage Tool
70-
*.dotCover
71-
72-
# NCrunch
73-
*.ncrunch*
74-
.*crunch*.local.xml
75-
76-
# Installshield output folder
77-
[Ee]xpress/
78-
79-
# DocProject is a documentation generator add-in
80-
DocProject/buildhelp/
81-
DocProject/Help/*.HxT
82-
DocProject/Help/*.HxC
83-
DocProject/Help/*.hhc
84-
DocProject/Help/*.hhk
85-
DocProject/Help/*.hhp
86-
DocProject/Help/Html2
87-
DocProject/Help/html
88-
89-
# Click-Once directory
90-
publish/
91-
92-
# Publish Web Output
93-
*.Publish.xml
94-
*.pubxml
95-
96-
# NuGet Packages Directory
97-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
98-
packages/
99-
100-
# Windows Azure Build Output
101-
csx
102-
*.build.csdef
103-
104-
# Windows Store app package directory
105-
AppPackages/
106-
107-
# Others
108-
sql/
109-
*.Cache
110-
ClientBin/
111-
[Ss]tyle[Cc]op.*
112-
~$*
113-
*~
114-
*.dbmdl
115-
*.[Pp]ublish.xml
116-
*.pfx
117-
*.publishsettings
118-
119-
# RIA/Silverlight projects
120-
Generated_Code/
121-
122-
# Backup & report files from converting an old project file to a newer
123-
# Visual Studio version. Backup files are not needed, because we have git ;-)
124-
_UpgradeReport_Files/
125-
Backup*/
126-
UpgradeLog*.XML
127-
UpgradeLog*.htm
128-
129-
# SQL Server files
130-
App_Data/*.mdf
131-
App_Data/*.ldf
132-
133-
# =========================
134-
# Windows detritus
135-
# =========================
136-
137-
# Windows image file caches
138-
Thumbs.db
139-
ehthumbs.db
140-
141-
# Folder config file
142-
Desktop.ini
143-
144-
# Recycle Bin used on file shares
145-
$RECYCLE.BIN/
146-
147-
# Mac crap
148-
.DS_Store
149-
150-
/dist/*.nupkg
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
f
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.sln.docstates
8+
9+
# Build results
10+
11+
[Dd]ebug/
12+
[Rr]elease/
13+
x64/
14+
build/
15+
[Bb]in/
16+
[Oo]bj/
17+
18+
# MSTest test Results
19+
[Tt]est[Rr]esult*/
20+
[Bb]uild[Ll]og.*
21+
22+
*_i.c
23+
*_p.c
24+
*.ilk
25+
*.meta
26+
*.obj
27+
*.pch
28+
*.pdb
29+
*.pgc
30+
*.pgd
31+
*.rsp
32+
*.sbr
33+
*.tlb
34+
*.tli
35+
*.tlh
36+
*.tmp
37+
*.tmp_proj
38+
*.log
39+
*.vspscc
40+
*.vssscc
41+
.builds
42+
*.pidb
43+
*.log
44+
*.scc
45+
46+
# Visual C++ cache files
47+
ipch/
48+
*.aps
49+
*.ncb
50+
*.opensdf
51+
*.sdf
52+
*.cachefile
53+
54+
# Visual Studio profiler
55+
*.psess
56+
*.vsp
57+
*.vspx
58+
59+
# Guidance Automation Toolkit
60+
*.gpState
61+
62+
# ReSharper is a .NET coding add-in
63+
_ReSharper*/
64+
*.[Rr]e[Ss]harper
65+
66+
# TeamCity is a build add-in
67+
_TeamCity*
68+
69+
# DotCover is a Code Coverage Tool
70+
*.dotCover
71+
72+
# NCrunch
73+
*.ncrunch*
74+
.*crunch*.local.xml
75+
76+
# Installshield output folder
77+
[Ee]xpress/
78+
79+
# DocProject is a documentation generator add-in
80+
DocProject/buildhelp/
81+
DocProject/Help/*.HxT
82+
DocProject/Help/*.HxC
83+
DocProject/Help/*.hhc
84+
DocProject/Help/*.hhk
85+
DocProject/Help/*.hhp
86+
DocProject/Help/Html2
87+
DocProject/Help/html
88+
89+
# Click-Once directory
90+
publish/
91+
92+
# Publish Web Output
93+
*.Publish.xml
94+
*.pubxml
95+
96+
# NuGet Packages Directory
97+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
98+
packages/
99+
100+
# Windows Azure Build Output
101+
csx
102+
*.build.csdef
103+
104+
# Windows Store app package directory
105+
AppPackages/
106+
107+
# Others
108+
sql/
109+
*.Cache
110+
ClientBin/
111+
[Ss]tyle[Cc]op.*
112+
~$*
113+
*~
114+
*.dbmdl
115+
*.[Pp]ublish.xml
116+
*.pfx
117+
*.publishsettings
118+
119+
# RIA/Silverlight projects
120+
Generated_Code/
121+
122+
# Backup & report files from converting an old project file to a newer
123+
# Visual Studio version. Backup files are not needed, because we have git ;-)
124+
_UpgradeReport_Files/
125+
Backup*/
126+
UpgradeLog*.XML
127+
UpgradeLog*.htm
128+
129+
# SQL Server files
130+
App_Data/*.mdf
131+
App_Data/*.ldf
132+
133+
# =========================
134+
# Windows detritus
135+
# =========================
136+
137+
# Windows image file caches
138+
Thumbs.db
139+
ehthumbs.db
140+
141+
# Folder config file
142+
Desktop.ini
143+
144+
# Recycle Bin used on file shares
145+
$RECYCLE.BIN/
146+
147+
# Mac crap
148+
.DS_Store
149+
150+
/dist/*.nupkg
151+
152+
*.userprefs
153+
154+
.fake/*
155+
.nuget/NuGet.exe
156+
157+
.idea/*
158+
.vs/*

.nuget/Microsoft.Build.dll

-73.5 KB
Binary file not shown.

.nuget/Microsoft.Build.readme

-1
This file was deleted.

0 commit comments

Comments
 (0)