You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/project/dogfooding.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ dotnet new nugetconfig
14
14
15
15
Next, add the package source to NuGet.Config with the [dotnet nuget add source](https://learn.microsoft.com/dotnet/core/tools/dotnet-nuget-add-source) command:
Then, you will be able to add the latest prerelease version of the desired package to your project.
@@ -31,7 +31,7 @@ To use daily builds of the entire runtime, follow the steps given in the rest of
31
31
If you're using private Azure DevOps feeds for your projects, you might need to add the preview feed through the Azure-specific feed URI format, which is `azure-feed://organization/optionalProject/feed@view`. In this case, you can add the .NET development package feed as follows:
2. If you are using a local copy of the dotnet CLI, take care that when you type `dotnet` you do not inadvertently pick up a different copy that you may have in your path. On Windows, for example, if you use a Command Prompt, a global copy may be in the path, so use the fully qualified path to your local `dotnet` (e.g. `C:\dotnet\dotnet.exe`). If you receive an error "error NETSDK1045: The current .NET SDK does not support targeting .NET 9.0." then you may be executing an older `dotnet`.
42
42
43
-
After setting up dotnet you can verify you are using the dogfooding version by executing `dotnet --info`. Here is an example output at the time of writing:
43
+
After setting up dotnet you can verify you are using the current preview version by executing `dotnet --info`. Here is an example output:
44
44
```
45
45
>dotnet --info
46
46
.NET SDK:
47
-
Version: 9.0.100-preview.5.22226.4
47
+
Version: 9.0.100-preview.1.23456.7
48
48
Commit: fc127ac5a4
49
49
50
50
Runtime Environment:
51
51
OS Name: Windows
52
52
OS Version: 10.0.22616
53
53
OS Platform: Windows
54
54
RID: win10-x64
55
-
Base Path: C:\Program Files\dotnet\sdk\9.0.100-preview.5.22226.4\
55
+
Base Path: C:\Program Files\dotnet\sdk\9.0.100-preview.1.23456.7\
@@ -79,7 +79,7 @@ Learn about .NET Runtimes and SDKs:
79
79
3. Our daily builds are uploaded to development feed, not NuGet - so ensure the development feed is in your nuget configuration in case you need other packages that aren't included in the download. For example, on Windows you could edit `%userprofile%\appdata\roaming\nuget\nuget.config` or on Linux edit `~/.nuget/NuGet/NuGet.Config` to add these lines:
@@ -150,7 +150,7 @@ make it self-contained by adding a RuntimeIdentifier (RID).
150
150
<!-- Ensure that the target framework is correct e.g. 'net9.0' -->
151
151
<TargetFramework>net9.0</TargetFramework>
152
152
<!-- modify build in this line with version reported by `dotnet --info` as above under ".NET runtimes installed" -> Microsoft.NETCore.App -->
153
-
<!-- moreover, this can be any valid Microsoft.NETCore.App package version from https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json -->
153
+
<!-- moreover, this can be any valid Microsoft.NETCore.App package version from https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json -->
0 commit comments