Skip to content

Commit 383dd50

Browse files
authored
Mention our new NuGet package feed
1 parent 31cecfe commit 383dd50

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,24 @@ git submodule add git@github.com:oxyplot/oxyplot-avalonia.git ./external/oxyplot
1414
# Reference the ../external/oxyplot-avalonia/Source/OxyPlot.Avalonia/OxyPlot.Avalonia.csproj project then.
1515
```
1616

17+
Another way is to import our [Azure Artifacts NuGet package feed](https://worldbeater.visualstudio.com/OxyPlot.Avalonia/_packaging) by creating the following `nuget.config` file:
18+
19+
```xml
20+
<?xml version="1.0" encoding="utf-8"?>
21+
<configuration>
22+
<packageSources>
23+
<clear /> <!-- Add other external NuGet package sources here -->
24+
<add key="OxyPlot.Avalonia-CI" value="https://worldbeater.pkgs.visualstudio.com/OxyPlot.Avalonia/_packaging/OxyPlot.Avalonia-CI/nuget/v3/index.json" />
25+
</packageSources>
26+
</configuration>
27+
```
28+
29+
Next, install the latest preview version of the `OxyPlot.Avalonia` package as such:
30+
31+
```
32+
dotnet add package OxyPlot.Avalonia
33+
```
34+
1735
### Usage
1836

1937
To use the library, add the following to your `App.xaml`:

0 commit comments

Comments
 (0)