• Download
  • Doc
  • Gallery
  • Success Stories
  • What's New
  • Contact
  • More...

Product:

  • Download
  • Documentation
  • Success Stories
  • What's New
  • Source code on GitHub
  • Home

Services:

  • SL Migration Package
  • Upload Your .XAP

Company:

  • Contact
follow us on twitter view source on GitHub
Show / Hide Table of Contents

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>

Add nuget.config

Restart your Visual Studio.

Go to "Manage NuGet Packages for Solution...": Manage nuget packages

Uninstall current version of OpenSilver: Uninstall OpenSilver

Choose the MyGet as a package source and install the latest Preview version: Install OpenSilver

Repeat steps with the OpenSilver.Simulator package.

Restart your Visual Studio and rebuild the solution.

  • Improve this Doc