Skip to content

Commit af8bfb8

Browse files
committed
Added AppVeyor configuration.
Added build badges.
1 parent d2834de commit af8bfb8

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# SystemWrapper
22

3+
![branch: master](http://img.shields.io/badge/branch-master-blue.svg?style=flat) [![Build status: master](https://ci.appveyor.com/api/projects/status/1126fol0d56a8my8/branch/master?svg=true)](https://ci.appveyor.com/project/jozefizso/systemmock/branch/master) ° ![branch: master](http://img.shields.io/badge/branch-develop-blue.svg?style=flat) [![Build status: develop](https://ci.appveyor.com/api/projects/status/1126fol0d56a8my8/branch/develop?svg=true)](https://ci.appveyor.com/project/jozefizso/systemmock/branch/develop)
4+
35
**SystemWrapper** is .NET library for easier testing system APIs.
46

7+
## Usage
8+
9+
To install SystemWrapper, run the following commands in the [Package Manager Console](http://docs.nuget.org/docs/start-here/using-the-package-manager-console)
10+
11+
12+
```
13+
Install-Package SystemWrapper.Interfaces
14+
Install-Package SystemWrapper.Wrappers
15+
```
16+
517

618
## License
719

appveyor.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#
2+
# SystemMock solution
3+
# AppVeyor configuration
4+
#
5+
6+
version: 0.7.0.{build}
7+
8+
branches:
9+
except:
10+
- gh-pages
11+
12+
os: Windows Server 2012
13+
14+
platform: Any CPU
15+
configuration: Release
16+
17+
build:
18+
project: SystemWrapper.sln
19+
verbosity: detailed
20+
21+
assembly_info:
22+
patch: true
23+
file: AssemblyInfo.*
24+
assembly_version: "{version}"
25+
assembly_file_version: "1.0.0.0"
26+
assembly_informational_version: "{version}"
27+
28+
test:
29+
assemblies:
30+
- SystemWrapper.Tests.dll
31+
32+
cache:
33+
- packages

0 commit comments

Comments
 (0)