Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.03 KB

DailyBuilds.md

File metadata and controls

36 lines (27 loc) · 2.03 KB

How to get daily builds of YARP

Daily builds include the latest source code changes. They are not supported for production use and are subject to frequent changes, but we strive to make sure daily builds function correctly.

If you want to download the latest daily build and use it in a project, then you need to:

  • Obtain the latest build of the .NET Core SDK.

  • Add a NuGet.Config to your project directory with the following content:

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <packageSources>
            <clear />
            <add key=".NET Libraries Daily" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
            <!-- The .NET Libraries Transport Daily feed is only needed for the Yarp.Kubernetes.Controller package -->
            <add key=".NET Libraries Transport Daily" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries-transport/nuget/v3/index.json" />
            <add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
        </packageSources>
    </configuration>

    NOTE: This NuGet.Config should be with your application unless you want nightly packages to potentially start being restored for other apps on the machine.

Then follow the Getting Started guide to set up a project and add the nuget package dependency. Note daily builds use a higher preview version than given in the docs.

Some features, such as new target frameworks, may require prerelease tooling builds for Visual Studio. These are available in the Visual Studio Preview.

To debug daily builds using Visual Studio

  • Enable Source Link support in Visual Studio should be enabled.
  • Enable source server support in Visual should be enabled.
  • Enable Just My Code should be disabled
  • Under Symbols enable the Microsoft Symbol Servers setting.