Skip to content

Commit a3e5208

Browse files
chore: add ci
1 parent 857036b commit a3e5208

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

appveyor.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#---------------------------------#
2+
# environment configuration #
3+
#---------------------------------#
4+
5+
# build worker image (VM template)
6+
image: Visual Studio 2017
7+
8+
#---------------------------------#
9+
# build configuration #
10+
#---------------------------------#
11+
12+
# to run your custom scripts instead of automatic MSBuild
13+
build_script:
14+
- ps: ./build/build.ps1

build/build.ps1

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
$logo = (Invoke-WebRequest "https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.raw").toString();
2+
Write-Host "$logo" -ForegroundColor Green
3+
4+
& nuget restore
5+
& msbuild /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
6+
7+
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }

0 commit comments

Comments
 (0)