diff --git a/Documentation/ConsumeNightlyBuild.md b/Documentation/ConsumeNightlyBuild.md index d8c21bb..8f93093 100644 --- a/Documentation/ConsumeNightlyBuild.md +++ b/Documentation/ConsumeNightlyBuild.md @@ -16,28 +16,38 @@ To consume nightly builds, create a `NuGet.Config` in your root solution directo ``` -### Install packages +## Install packages -Visual Studio: +### Visual Studio: -![File](images/nightly.PNG) - -NuGet (Package Manager console): +![File](images/nightly.PNG)\ +Example:\ +![File](images/nightlyExample.PNG) +### NuGet (Package Manager console): ```powershell -PM> Install-Package coverlet.msbuild -Version 3.0.0-preview.18.g183cbed8a6 -Source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json +PM> Install-Package coverlet.msbuild -Version X.X.X-preview.X.XXX -Source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json +``` +Example: +```powershell +PM> Install-Package coverlet.msbuild -Version 3.0.4-preview.4.g5de0ad7d60 -Source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json ``` -.NET CLI: - +### .NET CLI: ```bash - dotnet add package coverlet.msbuild --version 3.0.0-preview.18.g183cbed8a6 --source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json + dotnet add package coverlet.msbuild --version X.X.X-preview.X.XXX --source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json +``` +Example: +```bash + dotnet add package coverlet.msbuild --version 3.0.4-preview.4.g5de0ad7d60 --source https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json ``` -MSBuild project file: +### MSBuild project file: ```xml - + ``` - -_Note: The version provided here is just an example, you should use the latest when possible_ +Example: +```xml + +``` \ No newline at end of file diff --git a/Documentation/images/nightly.PNG b/Documentation/images/nightly.PNG index 9c84d3d..2982c9e 100644 Binary files a/Documentation/images/nightly.PNG and b/Documentation/images/nightly.PNG differ diff --git a/Documentation/images/nightlyExample.PNG b/Documentation/images/nightlyExample.PNG new file mode 100644 index 0000000..d50ed93 Binary files /dev/null and b/Documentation/images/nightlyExample.PNG differ