Skip to content
This repository was archived by the owner on Sep 13, 2019. It is now read-only.

Commit 457dd05

Browse files
committed
Added appveyor,yml
1 parent bb1cfc0 commit 457dd05

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

Postman.WebApi.MsBuildTask.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B84A6419-30A8-45C8-85A3-8B7FE9C8DC54}"
2323
ProjectSection(SolutionItems) = preProject
2424
.gitignore = .gitignore
25+
appveyor.yml = appveyor.yml
2526
LICENSE = LICENSE
2627
README.md = README.md
2728
EndProjectSection

appveyor.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Notes:
2+
# - Minimal appveyor.yml file is an empty file. All sections are optional.
3+
# - Indent each level of configuration with 2 spaces. Do not use tabs!
4+
# - All section names are case-sensitive.
5+
# - Section names should be unique on each level.
6+
7+
#---------------------------------#
8+
# general configuration #
9+
#---------------------------------#
10+
11+
# Retain the NuGet package cache between builds
12+
cache:
13+
- C:\Users\appveyor\AppData\Local\NuGet\Cache
14+
15+
# version format
16+
version: 0.0.1.{build}
17+
18+
#---------------------------------#
19+
# environment configuration #
20+
#---------------------------------#
21+
22+
# http://blog.appveyor.com/2014/06/04/shallow-clone-for-git-repositories/
23+
shallow_clone: true
24+
25+
#---------------------------------#
26+
# build configuration #
27+
#---------------------------------#
28+
29+
# build Configuration, i.e. Debug, Release, etc.
30+
configuration: Debug
31+
32+
build:
33+
project: Postman.WebApi.MsBuildTask.sln
34+
35+
# MSBuild verbosity level
36+
verbosity: minimal
37+
38+
# scripts to run before build
39+
before_build: nuget restore
40+
41+
on_finish:
42+
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
43+
44+
#---------------------------------#
45+
# tests configuration #
46+
#---------------------------------#
47+
48+
test:
49+
assemblies:
50+
- '**\*.UnitTests.dll'

0 commit comments

Comments
 (0)