Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit 9b1eaf6

Browse files
committed
Update README.md
1 parent 9d24330 commit 9b1eaf6

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
ServiceStack.Text.EnumMemberSerializer
22
======================================
33

4-
Extension for ServiceStack.Text to allow using EnumMember attributes to serialize and deserialize enumerations.
4+
Extension for ServiceStack.Text to allow using EnumMember attributes to serialize and deserialize enumerations. This allows you to use more human readable values while still leveraging the benefits of using enumerations.
55

6-
Example
7-
======================================
86
#Example Configuration
97

108
Configure Explicit Enumerations
@@ -69,7 +67,7 @@ http://myhost/products?returnpolicy=1
6967

7068
#Example Response
7169

72-
With ServiceStack.Text.EnumMemberSerializer you get this:
70+
With ServiceStack.Text.EnumMemberSerializer:
7371
```JSON
7472
[
7573
{
@@ -83,7 +81,7 @@ With ServiceStack.Text.EnumMemberSerializer you get this:
8381
]
8482
```
8583

86-
Without ServiceStack.Text.EnumMemberSerializer
84+
Without ServiceStack.Text.EnumMemberSerializer:
8785
```JSON
8886
[
8987
{
@@ -96,3 +94,12 @@ Without ServiceStack.Text.EnumMemberSerializer
9694
}
9795
]
9896
```
97+
98+
#Using the Code
99+
100+
* Install the NuGet Package (pending package push)
101+
* You can check out the code and run build.bat.
102+
* It will create NuGet packages you can consume in `.\ReleasePackages` or you can directly use the resulting binaries.
103+
* Build requirements
104+
* .Net 4.0
105+
* Powershell 2.0

0 commit comments

Comments
 (0)