{"id":16713131,"url":"https://github.com/picrap/propertylist","last_synced_at":"2025-09-12T17:40:15.393Z","repository":{"id":149989659,"uuid":"622290771","full_name":"picrap/PropertyList","owner":"picrap","description":"plist reader/writer made simple","archived":false,"fork":false,"pushed_at":"2023-04-17T17:41:57.000Z","size":102,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-13T21:47:55.753Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/picrap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-01T17:13:52.000Z","updated_at":"2023-04-15T08:03:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"132b07a3-f36a-45c0-83e0-bb4aea28c859","html_url":"https://github.com/picrap/PropertyList","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/picrap/PropertyList","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/picrap%2FPropertyList","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/picrap%2FPropertyList/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/picrap%2FPropertyList/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/picrap%2FPropertyList/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/picrap","download_url":"https://codeload.github.com/picrap/PropertyList/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/picrap%2FPropertyList/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274847992,"owners_count":25360979,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T20:45:36.968Z","updated_at":"2025-09-12T17:40:15.367Z","avatar_url":"https://github.com/picrap.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PropertyList\n\nA plist (short term for “property list”) reader and writer.\n\n## Package\n\nAvailable as a [![NuGet](https://img.shields.io/nuget/v/PropertyList.svg?style=flat-square)](https://www.nuget.org/packages/PropertyList) package.\n\n## How to use it\n\n### Supported types\n\nThe library handles the following entities:\n\n| plist type | write | read |\n|--|--|--|\n| `dict` | `IDictionary\u003cstring,object\u003e`, `IReadOnlyDictionary\u003cstring,object\u003e` | `Dictionary\u003cstring,object\u003e` (where `object`s are any other type) |\n| `array` | `ICollection`, `IEnumerable\u003cobject\u003e` | `List\u003cobject\u003e` (where `object`s are any other type) |\n| `string` | `string` | `string` |\n| `real` | `float`, `double`, `decimal` | `decimal` |\n| `integer` | `byte`, `sbyte`, `int`, `uint`, `long`, `ulong`  | `long` |\n| `date` | | `DateTimeOffset` |\n| `true`/`false` | | `bool` |\n\n### Reading\n\nThe library currently reads xml and binary plists.\n\n```csharp\nusing var reader = File.Open(\"/tmp/my.plist\");\nvar plistReader = new PlistReader();\nvar plist = plistReader.Read(reader);\nvar label = (string)plist[\"Label\"];\nvar programArguments = (IList)plist[\"ProgramArguments\"];\n```\n\n### Writing\n\nOnly xml writing is supported\n\n```csharp\nvar plist = new Dictionary\u003cstring, object\u003e\n{\n    {\"Label\", \"here\"},\n    {\"LaunchOnlyOnce\", true},\n};\nusing var writer = File.Create(\"/tmp/my.plist\");\nvar plistWriter = new PlistWriter();\nplistWriter.Write(plist, writer);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpicrap%2Fpropertylist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpicrap%2Fpropertylist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpicrap%2Fpropertylist/lists"}