|
| 1 | +# .NET 10 Preview 7 Binaries |
| 2 | + |
| 3 | +.NET 10 Preview 7 installers and binaries can be downloaded for the following product versions: |
| 4 | + |
| 5 | +- `.NET 10.0.0 Preview 7` |
| 6 | +- `.NET SDK 10.0.100-preview.7.25xxx.xxx` |
| 7 | + |
| 8 | +See [README.md](README.md) for .NET 10 release notes and discussions. |
| 9 | + |
| 10 | +The latest .NET releases are always listed at [.NET Releases](../../README.md). |
| 11 | + |
| 12 | +## Downloads |
| 13 | + |
| 14 | +| | SDK Installer | SDK Binaries | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime | |
| 15 | +| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: | :-----------------: | |
| 16 | +| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \| [Hosting Bundle][dotnet-hosting-win.exe] | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] | |
| 17 | +| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - | |
| 18 | +| Linux | [Snap and Package Manager](../../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz] \| [Arm][aspnetcore-runtime-linux-arm.tar.gz] \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz] \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - | |
| 19 | +| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | |
| 20 | + |
| 21 | +1. Includes the .NET Runtime and ASP.NET Core Runtime |
| 22 | +2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Runtime. |
| 23 | + |
| 24 | +The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK. |
| 25 | + |
| 26 | +You can check your .NET SDK version by running the following command. The example version shown is for this release. |
| 27 | + |
| 28 | +```console |
| 29 | +$ dotnet --version |
| 30 | +10.0.100-preview.7.25xxx.xxx |
| 31 | +``` |
| 32 | + |
| 33 | +## .NET Multi-Platform App UI (MAUI) Workload Downloads |
| 34 | + |
| 35 | + After installing the .NET SDK, you can install .NET MAUI using the `dotnet workload install` command: |
| 36 | + |
| 37 | + ```console |
| 38 | + dotnet workload install maui |
| 39 | + ``` |
| 40 | + |
| 41 | + The following workloads are also available to install individually: |
| 42 | + |
| 43 | + ```console |
| 44 | + dotnet workload install android |
| 45 | + dotnet workload install ios |
| 46 | + dotnet workload install maccatalyst |
| 47 | + dotnet workload install macos |
| 48 | + dotnet workload install tvos |
| 49 | + ``` |
| 50 | + |
| 51 | +## Container Images |
| 52 | + |
| 53 | +[.NET container images](https://github.com/dotnet/dotnet-docker/blob/main/README.md) have been updated for this release. The [.NET container samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET container images. |
| 54 | + |
| 55 | +The following repos have been updated: |
| 56 | + |
| 57 | +- [dotnet/sdk](https://github.com/dotnet/dotnet-docker/blob/main/README.sdk.md) |
| 58 | + - `docker pull mcr.microsoft.com/dotnet/sdk:10.0-preview` |
| 59 | +- [dotnet/aspnet](https://github.com/dotnet/dotnet-docker/blob/main/README.aspnet.md) |
| 60 | + - `docker pull mcr.microsoft.com/dotnet/aspnet:10.0-preview` |
| 61 | +- [dotnet/runtime](https://github.com/dotnet/dotnet-docker/blob/main/README.runtime.md) |
| 62 | + - `docker pull mcr.microsoft.com/dotnet/runtime:10.0-preview` |
| 63 | +- [dotnet/runtime-deps](https://github.com/dotnet/dotnet-docker/blob/main/README.runtime.md) |
| 64 | + - `docker pull mcr.microsoft.com/dotnet/runtime-deps:10.0-preview` |
| 65 | + |
| 66 | +## Visual Studio Compatibility |
| 67 | + |
| 68 | +.NET 10 is compatible with [Visual Studio 17.14 latest preview](https://visualstudio.microsoft.com) Users will have to [download](https://dotnet.microsoft.com/download/dotnet/10.0) and install the .NET 10 runtime/sdk standalone. |
| 69 | + |
| 70 | +## Feedback |
| 71 | + |
| 72 | +Your feedback is important and appreciated. We've created a discussion at <https://github.com/dotnet/core/discussions/categories/news> for your questions and comments. |
| 73 | + |
| 74 | +[checksums-runtime]: https://builds.dotnet.microsoft.com/dotnet/checksums/10.0.0-preview.7-sha.txt |
| 75 | +[checksums-sdk]: https://builds.dotnet.microsoft.com/dotnet/checksums/10.0.0-preview.7-sha.txt |
| 76 | + |
| 77 | +[linux-packages]: ../../install-linux.md |
| 78 | + |
| 79 | +## Packages updated in this release |
| 80 | + |
| 81 | +| Package name | Version | |
| 82 | +| :------------------------------------------ | :---------: | |
| 83 | +| AspNetCoreRuntime.10.0.x64 | 10.0.0-preview-7-25xxx-xxx | |
| 84 | +| AspNetCoreRuntime.10.0.x86 | 10.0.0-preview-7-25xxx-xxx | |
| 85 | +| dotnet-ef | 10.0.0-preview.7.25xxx.xxx | |
| 86 | +| dotnet-ilverify | 10.0.0-preview.7.25xxx.xxx | |
| 87 | +| dotnet-sql-cache | 10.0.0-preview.7.25xxx.xxx | |
| 88 | +| dotnet-suggest | 1.1.xxxxxx | |
| 89 | +| FSharp.Compiler.Service | 43.10.100-preview.25xxx.xxx | |
| 90 | +| FSharp.Core | 10.0.100-beta.25xxx.xxx | |
| 91 | +| Microsoft.AspNetCore.App.Internal.Assets | 10.0.0-preview.7.25xxx.xxx | |
| 92 | + |
| 93 | +[//]: # ( Runtime 10.0.0-preview.7) |
| 94 | +[dotnet-runtime-linux-arm.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-arm.tar.gz |
| 95 | +[dotnet-runtime-linux-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-arm64.tar.gz |
| 96 | +[dotnet-runtime-linux-musl-arm.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-musl-arm.tar.gz |
| 97 | +[dotnet-runtime-linux-musl-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-musl-arm64.tar.gz |
| 98 | +[dotnet-runtime-linux-musl-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-musl-x64.tar.gz |
| 99 | +[dotnet-runtime-linux-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-linux-x64.tar.gz |
| 100 | +[dotnet-runtime-osx-arm64.pkg]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-osx-arm64.pkg |
| 101 | +[dotnet-runtime-osx-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-osx-arm64.tar.gz |
| 102 | +[dotnet-runtime-osx-x64.pkg]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-osx-x64.pkg |
| 103 | +[dotnet-runtime-osx-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-osx-x64.tar.gz |
| 104 | +[dotnet-runtime-win-arm64.exe]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-arm64.exe |
| 105 | +[dotnet-runtime-win-arm64.zip]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-arm64.zip |
| 106 | +[dotnet-runtime-win-x64.exe]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-x64.exe |
| 107 | +[dotnet-runtime-win-x64.zip]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-x64.zip |
| 108 | +[dotnet-runtime-win-x86.exe]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-x86.exe |
| 109 | +[dotnet-runtime-win-x86.zip]: https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-runtime-10.0.0-preview.7.25xxx.xxx-win-x86.zip |
| 110 | + |
| 111 | +[//]: # ( WindowsDesktop 10.0.0-preview.7) |
| 112 | +[windowsdesktop-runtime-win-arm64.exe]: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25xxx.xxx/windowsdesktop-runtime-10.0.0-preview.7.25xxx.xxx-win-arm64.exe |
| 113 | +[windowsdesktop-runtime-win-x64.exe]: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25xxx.xxx/windowsdesktop-runtime-10.0.0-preview.7.25xxx.xxx-win-x64.exe |
| 114 | +[windowsdesktop-runtime-win-x86.exe]: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25xxx.xxx/windowsdesktop-runtime-10.0.0-preview.7.25xxx.xxx-win-x86.exe |
| 115 | + |
| 116 | +[//]: # ( ASP 10.0.0-preview.7) |
| 117 | +[aspnetcore-runtime-linux-arm.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-linux-arm.tar.gz |
| 118 | +[aspnetcore-runtime-linux-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-linux-arm64.tar.gz |
| 119 | +[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-linux-musl-x64.tar.gz |
| 120 | +[aspnetcore-runtime-linux-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-linux-x64.tar.gz |
| 121 | +[aspnetcore-runtime-osx-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-osx-arm64.tar.gz |
| 122 | +[aspnetcore-runtime-osx-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-osx-x64.tar.gz |
| 123 | +[aspnetcore-runtime-win-x64.exe]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-win-x64.exe |
| 124 | +[aspnetcore-runtime-win-x86.exe]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/aspnetcore-runtime-10.0.0-preview.7.25xxx.xxx-win-x86.exe |
| 125 | +[dotnet-hosting-win.exe]: https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25xxx.xxx/dotnet-hosting-10.0.0-preview.7.25xxx.xxx-win.exe |
| 126 | + |
| 127 | +[//]: # ( SDK 10.0.100-preview.7) |
| 128 | +[dotnet-sdk-linux-arm.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-linux-arm.tar.gz |
| 129 | +[dotnet-sdk-linux-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-linux-arm64.tar.gz |
| 130 | +[dotnet-sdk-linux-musl-arm.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-linux-musl-arm.tar.gz |
| 131 | +[dotnet-sdk-linux-musl-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-linux-musl-x64.tar.gz |
| 132 | +[dotnet-sdk-linux-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-linux-x64.tar.gz |
| 133 | +[dotnet-sdk-osx-arm64.pkg]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-osx-arm64.pkg |
| 134 | +[dotnet-sdk-osx-arm64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-osx-arm64.tar.gz |
| 135 | +[dotnet-sdk-osx-x64.pkg]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-osx-x64.pkg |
| 136 | +[dotnet-sdk-osx-x64.tar.gz]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-osx-x64.tar.gz |
| 137 | +[dotnet-sdk-win-arm64.exe]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-arm64.exe |
| 138 | +[dotnet-sdk-win-arm64.zip]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-arm64.zip |
| 139 | +[dotnet-sdk-win-x64.exe]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-x64.exe |
| 140 | +[dotnet-sdk-win-x64.zip]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-x64.zip |
| 141 | +[dotnet-sdk-win-x86.exe]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-x86.exe |
| 142 | +[dotnet-sdk-win-x86.zip]: https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25xxx.xxx/dotnet-sdk-10.0.100-preview.7.25xxx.xxx-win-x86.zip |
0 commit comments