# How to get daily builds of ASP.NET Core 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](https://github.com/dotnet/installer#table). * Add a NuGet.Config to your project directory with the following content: ## .NET 7 ```xml ``` ## .NET 8 ```xml ``` *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.* Some features, such as new target frameworks, may require prerelease tooling builds for Visual Studio. These are available in the [Visual Studio Preview](https://www.visualstudio.com/vs/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.