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

Commit

Permalink
Added appveyor,yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesholcomb committed Nov 12, 2015
1 parent bb1cfc0 commit 457dd05
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions Postman.WebApi.MsBuildTask.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B84A6419-30A8-45C8-85A3-8B7FE9C8DC54}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
appveyor.yml = appveyor.yml
LICENSE = LICENSE
README.md = README.md
EndProjectSection
Expand Down
50 changes: 50 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.

#---------------------------------#
# general configuration #
#---------------------------------#

# Retain the NuGet package cache between builds
cache:
- C:\Users\appveyor\AppData\Local\NuGet\Cache

# version format
version: 0.0.1.{build}

#---------------------------------#
# environment configuration #
#---------------------------------#

# http://blog.appveyor.com/2014/06/04/shallow-clone-for-git-repositories/
shallow_clone: true

#---------------------------------#
# build configuration #
#---------------------------------#

# build Configuration, i.e. Debug, Release, etc.
configuration: Debug

build:
project: Postman.WebApi.MsBuildTask.sln

# MSBuild verbosity level
verbosity: minimal

# scripts to run before build
before_build: nuget restore

on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

#---------------------------------#
# tests configuration #
#---------------------------------#

test:
assemblies:
- '**\*.UnitTests.dll'

0 comments on commit 457dd05

Please sign in to comment.