We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0d3a1f commit 616ddddCopy full SHA for 616dddd
readme.md
@@ -26,6 +26,18 @@ Check the [user guide](doc/readme.md) documentation from the `doc/` folder.
26
27
## Usage Example
28
29
+### Setup
30
+After installing the NuGet package, you need to modify your csproj to select a Platform RID via the `RuntimeIdentifier` property:
31
+
32
+```xml
33
+ <PropertyGroup>
34
+ <!-- Workaround for issue https://github.com/microsoft/ClangSharp/issues/129 -->
35
+ <RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' AND '$(PackAsTool)' != 'true'">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
36
+ </PropertyGroup>
37
+```
38
39
+### Code
40
41
You can jump-start with the `CppParser.Parse` method:
42
43
```C#
0 commit comments