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: daily-builds.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# .NET Daily Builds -- Servicing and future releases
2
2
3
+
See the [.NET SDK daily builds table](https://github.com/dotnet/dotnet/blob/main/docs/builds-table.md) for the latest daily build.
4
+
3
5
The .NET team builds many branches of the product daily. You can install these builds to try out functionality prior to release.
4
6
5
7
Daily builds, for both future and servicing branches, are available as Docker container images from the [Microsoft Container Registry](https://github.com/dotnet/dotnet-docker/blob/nightly/README.md).
Copy file name to clipboardExpand all lines: release-notes/10.0/install-linux.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,16 @@ You can install .NET with a binary archive. This option is required if you want
30
30
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.
The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
44
44
45
-
You can add your .NET install location permanently to your path if you'd like.
45
+
You can add your .NET install location permanently to your path if you'd like.
Copy file name to clipboardExpand all lines: release-notes/10.0/install-macos.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,16 +34,16 @@ You can install .NET with a binary archive. This option is required if you want
34
34
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.
The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
48
48
49
-
You can add your .NET install location permanently to your path if you'd like.
49
+
You can add your .NET install location permanently to your path if you'd like.
Copy file name to clipboardExpand all lines: release-notes/10.0/install-windows.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,15 +50,15 @@ You can install .NET with a binary archive. This option is required if you want
50
50
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.
The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
63
63
64
-
You can add your .NET install location permanently to your path if you'd like.
64
+
You can add your .NET install location permanently to your path if you'd like.
Copy file name to clipboardExpand all lines: release-notes/10.0/known-issues.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,3 +7,22 @@ You may encounter some known issues, which may include workarounds, mitigations,
7
7
Starting in .NET 10 Preview 2, installing the ASP.NET Core Runtime Hosting Bundle for Windows on ARM64 when a earlier version of the hosting bundle was previously installed breaks IIS hosting. This causes problems for both IIS and IIS express on ARM64 machines after attempting to update the hosting bundle. Fortunately, **you can work around this issue by uninstalling all hosting bundles and reinstalling the .NET 10 Preview 2 hosting bundle.**
8
8
9
9
See [the GitHub issue](https://github.com/dotnet/aspnetcore/issues/60764) for more details.
10
+
11
+
## MAUI applications may fail to build in Visual Studio
12
+
13
+
MAUI applications built in Visual Studio or with `MSBuild.exe` may fail with an error like `C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\amd64\Microsoft.CSharp.CurrentVersion.targets(238,5): error : The application to execute does not exist: 'C:\Program Files\dotnet\sdk\10.0.100-preview.4.25258.110\Roslyn\binfx\csc.dll'`.
14
+
15
+
### Available Workaround
16
+
17
+
Add the following to a `Directory.Build.props` file that is imported in all MAUI projects, or directly in each affected MAUI project:
18
+
19
+
```xml
20
+
<PropertyGroupLabel="">
21
+
<!-- Work around .NET 10-preview4 MAUI issue.
22
+
Remove when building with .NET SDK 10.0.100-preview.5 or later that
23
+
includes https://github.com/dotnet/roslyn/pull/78402 -->
0 commit comments