From 9d22c286f887e1319f982de55edeed288c8f55ea Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:06:25 +0200 Subject: [PATCH 1/6] Added downloading.md under NUnit --- .../nunit/getting-started/downloading.md | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 docs/articles/nunit/getting-started/downloading.md diff --git a/docs/articles/nunit/getting-started/downloading.md b/docs/articles/nunit/getting-started/downloading.md new file mode 100644 index 000000000..ed11c85df --- /dev/null +++ b/docs/articles/nunit/getting-started/downloading.md @@ -0,0 +1,63 @@ +--- +uid: downloading +--- + +# Downloading + +Normally you would install NUnit following the [guidelines for installation](./installation.md). + +However, sometimes you need just the little extra! + +## Release versions + +You can find the latest release package itself at [Nuget](https://www.nuget.org/packages/NUnit), here you will also +find earlier versions, and instructions on how to install using different tools. + +This is our latest release ![](https://img.shields.io/github/release-date/nunit/nunit.svg?style=flat), +[![NuGet Version](https://img.shields.io/nuget/v/NUnit.svg)](https://www.nuget.org/packages/NUnit/). And it has a +high number of ![](https://img.shields.io/nuget/dt/NUnit.svg?style=flat). + +You can also find the release package at the [Release section](https://github.com/nunit/nunit/releases) in +our [github repo](https://github.com/nunit/nunit). + +The repo is also where you can raise issues, download code, join discussion or just look around. + +## Developer versions + +We also release developer versions, they are called `alpha` versions, and you find them at our place at [Myget](https://img.shields.io/myget/nunit/vpre/NUnit.svg?label=MyGet%3A%20Latest%20pre-release&style=flat)](). + +A new developer version is created every time we merge a new Pull Request into our main branch. + +The easiest way to get the developer versions, is to add it to your nuget.config file, or if you dont have it, just create one. + +The code snippet below is the full content of a nuget.config file which includes the Myget feed. + +```xml + + + + + + + +``` + +Note that if you use [Central Package Management](https://learn.microsoft.com/en-us/nuget/consume-packages/central-package-management) you will get a [NU1507](https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu1507) warning about having two feeds and not having [package source mapping](https://learn.microsoft.com/en-us/nuget/consume-packages/package-source-mapping). You can just ignore this warning if you're just going to test it, but if you like to use it over time, you should add it like shown below. + +```xml + + + + + + + + + + + + + + + +``` From 48591d16578f0e6fd3cbe0a100801fe227a6adbe Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:07:32 +0200 Subject: [PATCH 2/6] Added downloading.md under NUnit --- docs/articles/nunit/getting-started/toc.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/articles/nunit/getting-started/toc.yml b/docs/articles/nunit/getting-started/toc.yml index e17cbd74e..533997306 100644 --- a/docs/articles/nunit/getting-started/toc.yml +++ b/docs/articles/nunit/getting-started/toc.yml @@ -1,5 +1,7 @@ - name: Installation href: installation.md +- name: Downloading + href: downloading.md - name: Upgrading href: upgrading.md - name: Samples From 5a7df95958524909e70fb0aa0f3f21b0d94e5c82 Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:12:12 +0200 Subject: [PATCH 3/6] Fix spelling errors and image labels --- docs/articles/nunit/getting-started/downloading.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/articles/nunit/getting-started/downloading.md b/docs/articles/nunit/getting-started/downloading.md index ed11c85df..dc5118ada 100644 --- a/docs/articles/nunit/getting-started/downloading.md +++ b/docs/articles/nunit/getting-started/downloading.md @@ -13,9 +13,9 @@ However, sometimes you need just the little extra! You can find the latest release package itself at [Nuget](https://www.nuget.org/packages/NUnit), here you will also find earlier versions, and instructions on how to install using different tools. -This is our latest release ![](https://img.shields.io/github/release-date/nunit/nunit.svg?style=flat), +This is our latest release ![Release date](https://img.shields.io/github/release-date/nunit/nunit.svg?style=flat), [![NuGet Version](https://img.shields.io/nuget/v/NUnit.svg)](https://www.nuget.org/packages/NUnit/). And it has a -high number of ![](https://img.shields.io/nuget/dt/NUnit.svg?style=flat). +high number of ![Downloads](https://img.shields.io/nuget/dt/NUnit.svg?style=flat). You can also find the release package at the [Release section](https://github.com/nunit/nunit/releases) in our [github repo](https://github.com/nunit/nunit). @@ -24,13 +24,13 @@ The repo is also where you can raise issues, download code, join discussion or j ## Developer versions -We also release developer versions, they are called `alpha` versions, and you find them at our place at [Myget](https://img.shields.io/myget/nunit/vpre/NUnit.svg?label=MyGet%3A%20Latest%20pre-release&style=flat)](). +We also release developer versions, they are called `alpha` versions, and you find them at our place at [MyGet](https://img.shields.io/myget/nunit/vpre/NUnit.svg?label=MyGet%3A%20Latest%20pre-release&style=flat)](). A new developer version is created every time we merge a new Pull Request into our main branch. -The easiest way to get the developer versions, is to add it to your nuget.config file, or if you dont have it, just create one. +The easiest way to get the developer versions, is to add it to your nuget.config file, or if you don't have it, just create one. -The code snippet below is the full content of a nuget.config file which includes the Myget feed. +The code snippet below is the full content of a nuget.config file which includes the MyGet feed. ```xml From 95f99c19ced48e5e999ff69846c0f5ee9c48143d Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:12:51 +0200 Subject: [PATCH 4/6] Fix spelling errors and image labels --- docs/articles/nunit/getting-started/downloading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/nunit/getting-started/downloading.md b/docs/articles/nunit/getting-started/downloading.md index dc5118ada..98c04ac01 100644 --- a/docs/articles/nunit/getting-started/downloading.md +++ b/docs/articles/nunit/getting-started/downloading.md @@ -24,7 +24,7 @@ The repo is also where you can raise issues, download code, join discussion or j ## Developer versions -We also release developer versions, they are called `alpha` versions, and you find them at our place at [MyGet](https://img.shields.io/myget/nunit/vpre/NUnit.svg?label=MyGet%3A%20Latest%20pre-release&style=flat)](). +We also release developer versions, they are called `alpha` versions, and you find them at our place at [[MyGet](https://img.shields.io/myget/nunit/vpre/NUnit.svg?label=MyGet%3A%20Latest%20pre-release&style=flat)](). A new developer version is created every time we merge a new Pull Request into our main branch. From 18fa3a997f40c7093fc92bca62cce5455c0f10e2 Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:13:26 +0200 Subject: [PATCH 5/6] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- docs/articles/nunit/getting-started/toc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/nunit/getting-started/toc.yml b/docs/articles/nunit/getting-started/toc.yml index 533997306..8836c4b41 100644 --- a/docs/articles/nunit/getting-started/toc.yml +++ b/docs/articles/nunit/getting-started/toc.yml @@ -1,7 +1,7 @@ - name: Installation href: installation.md - name: Downloading - href: downloading.md + href: downloading.md - name: Upgrading href: upgrading.md - name: Samples From 480042bd5d11b8b389877915785ee5bd7934b59a Mon Sep 17 00:00:00 2001 From: Terje Sandstrom Date: Sat, 29 Aug 2026 22:14:07 +0200 Subject: [PATCH 6/6] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- docs/articles/nunit/getting-started/downloading.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/articles/nunit/getting-started/downloading.md b/docs/articles/nunit/getting-started/downloading.md index 98c04ac01..1475cdf3f 100644 --- a/docs/articles/nunit/getting-started/downloading.md +++ b/docs/articles/nunit/getting-started/downloading.md @@ -10,8 +10,8 @@ However, sometimes you need just the little extra! ## Release versions -You can find the latest release package itself at [Nuget](https://www.nuget.org/packages/NUnit), here you will also -find earlier versions, and instructions on how to install using different tools. +You can find the latest release package at [NuGet](https://www.nuget.org/packages/NUnit). There you will also +find earlier versions and instructions on how to install using different tools. This is our latest release ![Release date](https://img.shields.io/github/release-date/nunit/nunit.svg?style=flat), [![NuGet Version](https://img.shields.io/nuget/v/NUnit.svg)](https://www.nuget.org/packages/NUnit/). And it has a