From ee056b046cd9cbdf8befad37b659188d03fec42f Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 20 Feb 2015 01:11:13 +0000 Subject: [PATCH] Added README. --- README.md | 33 +++++++++++++++++++++++++++++++++ plist-cil/ChangeLog | 5 +++++ plist-cil/plist-cil.csproj | 5 +++++ 3 files changed, 43 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..09f88f1 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +#plist-cil +This library enables .NET (CLR) applications to work with property lists in various formats. +It is mostly based on [dd-plist for Java](https://code.google.com/p/plist/). + +You can parse existing property lists (e.g. those created by an iOS application) and work with the contents on any operating system. + +The library also enables you to create your own property lists from scratch and store them in various formats. + +The provided API mimics the Cocoa/NeXTSTEP API, and where applicable, the .NET API, granting access to the basic functions of classes like NSDictionary, NSData, etc. + +###Supported formats + +| Format | Read | Write | +| ---------------------- | ---- | ----- | +| OS X / iOS XML | yes | yes | +| OS X / iOS Binary (v0) | yes | yes | +| OS X / iOS ASCII | yes | yes | +| GNUstep ASCII | yes | yes | + +###Requirements +.NET Framework 4.0 or Mono. + +###Download + +The latest releases can be downloaded [here](https://github.com/claunia/plist-cil/releases): + +###NuGet support +Coming soon...... + +###Help +The API documentation is included in the download. + +When you encounter a bug please report it by on the [issue tracker](https://github.com/claunia/plist-cil/issues). diff --git a/plist-cil/ChangeLog b/plist-cil/ChangeLog index 5f7f72e..29bc778 100644 --- a/plist-cil/ChangeLog +++ b/plist-cil/ChangeLog @@ -1,3 +1,8 @@ +2015-02-20 Natalia Portillo + + * plist-cil.csproj: + Added README. + 2015-02-20 Natalia Portillo * plist-cil.csproj: diff --git a/plist-cil/plist-cil.csproj b/plist-cil/plist-cil.csproj index 736cb53..774d258 100644 --- a/plist-cil/plist-cil.csproj +++ b/plist-cil/plist-cil.csproj @@ -118,5 +118,10 @@ PreserveNewest False + + README.md + PreserveNewest + False + \ No newline at end of file