Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTanay Parikh <TanayParikh@users.noreply.github.com>2022-09-03 04:22:24 +0300
committerGitHub <noreply@github.com>2022-09-03 04:22:24 +0300
commitc0eba5daeedc8836ffda2ffbc245652ed88f2bf6 (patch)
tree1b7ed7fa2847d37535fc9eac45d362778a06cca1 /docs
parente971d938793f2d0b8bc96e5f839e61066d19ecea (diff)
Update nigh (#43722)
Diffstat (limited to 'docs')
-rw-r--r--docs/DailyBuilds.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/docs/DailyBuilds.md b/docs/DailyBuilds.md
index 3112a89339..b311c0a262 100644
--- a/docs/DailyBuilds.md
+++ b/docs/DailyBuilds.md
@@ -4,9 +4,11 @@ Daily builds include the latest source code changes. They are not supported for
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/core-sdk#installers-and-binaries).
+* 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
@@ -17,6 +19,19 @@ If you want to download the latest daily build and use it in a project, then you
</packageSources>
</configuration>
```
+
+## .NET 8
+
+ ```xml
+ <?xml version="1.0" encoding="utf-8"?>
+ <configuration>
+ <packageSources>
+ <clear />
+ <add key="aspnetcore" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
+ <add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
+ </packageSources>
+ </configuration>
+ ```
*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.*