Skip to content

Commit eb45d5c

Browse files
author
Simona Avornicesei
committed
ccnet#267 Integrate with AppVeyor
- fix build - add cake build and GitVersion - configure appveyor
1 parent 4317444 commit eb45d5c

19 files changed

+867
-48
lines changed

.appveyor.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#---------------------------------#
2+
# environment configuration #
3+
#---------------------------------#
4+
image: Visual Studio 2017
5+
6+
#---------------------------------#
7+
# build configuration #
8+
#---------------------------------#
9+
build_script:
10+
- cmd: build.bat
11+
12+
#---------------------------------#
13+
# tests configuration #
14+
#---------------------------------#
15+
test_script:
16+
- cmd: build-tests.bat
17+
after_test:
18+
- cmd:
19+
20+
21+
#---------------------------------#
22+
# artifacts configuration #
23+
#---------------------------------#

.gitignore

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

0 commit comments

Comments
 (0)