File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 ) }
You can’t perform that action at this time.
0 commit comments