# Consume nightly build You can check metadata of nightly build packages here: Msbuild https://www.myget.org/feed/coverlet-dev/package/nuget/coverlet.msbuild VSTest collector https://www.myget.org/feed/coverlet-dev/package/nuget/coverlet.collector .Net tools https://www.myget.org/feed/coverlet-dev/package/nuget/coverlet.console To consume nightly build create a `NuGet.Config` on your root solution directory and add following content ```xml ``` ### Install packages You can install nightly package using visual studio ![File](images/nightly.PNG) Nuget(PM console) ``` PM> Install-Package coverlet.msbuild -Version 2.6.25-g6209239d69 -Source https://www.myget.org/F/coverlet-dev/api/v3/index.json ``` .NET CLI ``` dotnet add package coverlet.msbuild --version 2.6.25-g6209239d69 --source https://www.myget.org/F/coverlet-dev/api/v3/index.json ``` .csproj ``` ``` ### How to verify version You can understand which version you're using comparing nightly build release date and repo commits. For instance if we want to consume last msbuild nightly build: * Go to https://www.myget.org/feed/coverlet-dev/package/nuget/coverlet.msbuild * Scroll down the page and check release date ![File](images/nightly_1.PNG) * Go to repo commits and compare date and first part of commit hash ![File](images/nightly_2.PNG) As you can see we build at 00.00 UTC and build takes some seconds, so it's possible that release date won't be the same of commit repo.