Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-visionaid authored Nov 15, 2024
1 parent 43ba0ca commit 8b79ebe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Build Status](https://fb8.visualstudio.com/Openmcdf/_apis/build/status/Openmcdf-CI?branchName=master)](https://fb8.visualstudio.com/Openmcdf/_build/latest?definitionId=1&branchName=master)
![GitHub Actions](https://github.com/ironfede/openmcdf/actions/workflows/dotnet.yml/badge.svg)
![GitHub Actions](https://github.com/ironfede/openmcdf/actions/workflows/dotnet-desktop.yml/badge.svg)

# OpenMcdf

Expand Down Expand Up @@ -60,11 +59,11 @@ root.Flush(consolidate: true);
is available via extension methods ***(experimental - API subjected to changes)***

```C#
PropertySetStream mgr = ((CFStream)target).AsOLEProperties();
for (int i = 0; i < mgr.PropertySet0.NumProperties; i++)
OlePropertiesContainer co = new(stream);
foreach (OleProperty prop in co.Properties)
{
ITypedPropertyValue p = mgr.PropertySet0.Properties[i];
...
}
```

OpenMcdf runs happily on the [Mono](http://www.mono-project.com/) platform and multi-targets **netstandard2.0** and **net8.0** to allow maximum client compatibility.

0 comments on commit 8b79ebe

Please sign in to comment.