How to get the latest preview version of OpenSilver
The CI/CD pipeline is run automatically after each commit to the develop branch in the OpenSilver repository. This pipeline builds OpenSilver and Simulator packages and uploads it to the publicly available MyGet feed. As a result, anybody can consume the latest version with minimal effort.
Steps
Add the nuget.config file with the following content on the same level with the .sln file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="MyGet" value="https://www.myget.org/F/opensilver/api/v3/index.json" />
</packageSources>
</configuration>
Restart your Visual Studio.
Go to "Manage NuGet Packages for Solution...":
Uninstall current version of OpenSilver:
Choose the MyGet as a package source and install the latest Preview version:
Repeat steps with the OpenSilver.Simulator package.
Restart your Visual Studio and rebuild the solution.