diff --git a/docs/en/Abp-Nightly-Builds.md b/docs/en/Abp-Nightly-Builds.md deleted file mode 100644 index 9241828848..0000000000 --- a/docs/en/Abp-Nightly-Builds.md +++ /dev/null @@ -1,19 +0,0 @@ -## Abp Nightly Builds - -This document will show you how to use the Abp Framework Nightly feed. - -There are two URLs, one if you are using NuGet 2 (Visual Studio 2012+) or another URL for NuGet 3 (Visual Studio 2015+). - -- NuGet v3 Feed URL: -- NuGet v2 Feed URL: - -Go to: `Tools > Options > NuGet Package Manager > Package Source` - -Once you reached that window: - -1. Click the green `+` icon -2. In the bottom, name the feed (instead of `Package source`) and paste in the URL (instead of `http://packagesource`) -3. Click the `Update` button -4. Click `OK` - -Then open the **Package Manager Console** and from `Package source` drop-down menu, select the new package source you added. If you choose the “abp-nightly” feed and check the `Include prerelease` checkbox. diff --git a/docs/en/Nightly-Builds.md b/docs/en/Nightly-Builds.md new file mode 100644 index 0000000000..e7ebe0f33b --- /dev/null +++ b/docs/en/Nightly-Builds.md @@ -0,0 +1,26 @@ +# Nightly Builds + +All framework & module packages are deployed to MyGet every night in weekdays. So, you can use or test the latest code without waiting the next release. + +## Configure Visual Studio + +> Requires Visual Studio 2017+ + +1. Go to `Tools > Options > NuGet Package Manager > Package Source`. +2. Click the green `+` icon. +3. Set `ABP Nightly` as *Name* and `https://www.myget.org/F/abp-nightly/api/v3/index.json` as the *Source* as shown below: + ![night-build-add-nuget-source](images/night-build-add-nuget-source.png) +4. Click the `Update` button. +5. Click the `OK` button to save changes. + +## Install Package + +Now, you can install preview / nightly packages to your project from Nuget Browser or Package Manager Console. + +![night-build-add-nuget-package](images/night-build-add-nuget-package.png) + +1. In the nuget browser, select "Include prereleases". +2. Change package source to "All". +3. Search a package. You will see prereleases of the package formatted as `(VERSION)-preview(DATE)` (like *v0.16.0-preview20190401* in this sample). +4. You can click to the `Install` button to add package to your project. + diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json index 249bd56d85..396b92afd3 100644 --- a/docs/en/docs-nav.json +++ b/docs/en/docs-nav.json @@ -278,7 +278,7 @@ }, { "text": "Nightly Builds", - "path": "Abp-Nightly-Builds.md" + "path": "Nightly-Builds.md" }, { "text": "Contribution Guide", diff --git a/docs/en/images/night-build-add-nuget-package.png b/docs/en/images/night-build-add-nuget-package.png new file mode 100644 index 0000000000..c3621ef7d9 Binary files /dev/null and b/docs/en/images/night-build-add-nuget-package.png differ diff --git a/docs/en/images/night-build-add-nuget-source.png b/docs/en/images/night-build-add-nuget-source.png new file mode 100644 index 0000000000..8fd4b9365a Binary files /dev/null and b/docs/en/images/night-build-add-nuget-source.png differ