Skip to content

Commit c51f9dc

Browse files
committed
Change website url, added nuget package info & appveyor yml
1 parent 7e6186e commit c51f9dc

2 files changed

Lines changed: 35 additions & 4 deletions

File tree

README.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
LitJSON
22
=======
33

4+
[![Build status](https://ci.appveyor.com/api/projects/status/ciq9vo4caq0wmxap/branch/develop?svg=true)](https://ci.appveyor.com/project/litjson/litjson/branch/develop)
5+
46
A *.Net* library to handle conversions from and to JSON (JavaScript Object
57
Notation) strings.
68

@@ -50,9 +52,24 @@ $ make PKG_CONFIG=/Library/Frameworks/Mono.framework/Commands/pkg-config test
5052

5153
## Using LitJSON from an application
5254

53-
Reference the `LitJson.dll` file when compiling your code. For a link to
54-
download this file, see the *Download* section in the project's
55-
[website][litjson].
55+
#### Package manager
56+
57+
```PowerShell
58+
Install-Package LitJson -Version 0.9.0
59+
```
60+
61+
#### .NET CLI
62+
63+
```PowerShell
64+
dotnet add package LitJson --version 0.9.0
65+
```
66+
67+
#### Paket CLI
68+
69+
```PowerShell
70+
paket add LitJson --version 0.9.0
71+
```
72+
5673

5774
Alternatively, just copy the whole tree of files under `src/LitJSON` to your
5875
own project's source tree and integrate it with your development environment.
@@ -62,7 +79,7 @@ own project's source tree and integrate it with your development environment.
6279
[Unlicense][unlicense] (public domain).
6380

6481

65-
[litjson]: http://lbv.github.io/litjson/
82+
[litjson]: [unlicense](http://unlicense.org/
6683
[nunit]: http://www.nunit.org/
6784
[pkg-config]: http://www.freedesktop.org/wiki/Software/pkg-config
6885
[unlicense]: http://unlicense.org/

appveyor.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 1.0.{build}
2+
image: Visual Studio 2017
3+
install:
4+
- ps: >-
5+
choco install make
6+
7+
8+
mkdir bin
9+
build_script:
10+
- cmd: >-
11+
cd build/make
12+
13+
make CSC='"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\Roslyn\csc.exe"'
14+
test: off

0 commit comments

Comments
 (0)