Files
ant-design-blazor/docs/nightly-build.en-US.md
James Yeung 89561a41a0 Changelog 1.1.1 & site update (#4392)
* djust js loading order

* add changelog

* add docs

* remove some data

* fix docsearchjs

* add sponsorship notice
2025-01-02 23:38:30 +08:00

1.3 KiB

order, title
order title
9 Getting nightly builds

How to get nightly builds of Ant Design Blazor

Nightly 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 nightly builds function correctly.

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

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

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <packageSources>
            <clear />
            <add key="AntDesign-Nightly" value="https://www.myget.org/F/ant-design-blazor/api/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.

To debug nightly 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.