Skip to content

Commit 636584e

Browse files
author
Melony Qin
committed
adjustment
1 parent 5fa1ccc commit 636584e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,9 @@ To compile your project as ReadyToRun, update your project file by adding the `<
154154

155155
```xml
156156
<PropertyGroup>
157-
<TargetFramework>net7.0</TargetFramework>
157+
<TargetFramework>net6.0</TargetFramework>
158158
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
159+
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
159160
<PublishReadyToRun>true</PublishReadyToRun>
160161
</PropertyGroup>
161162
```

articles/azure-functions/functions-dotnet-class-library.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ To compile your project as ReadyToRun, update your project file by adding the `<
231231
```
232232

233233
> [!IMPORTANT]
234-
> Starting in .NET 6, support for Composite ReadyToRun compilation has been added. However, In .NET 6, Composite ReadyToRun is only supported for self-contained deployment.
235-
Composite ReadyToRun compiles a set of assemblies that must be distributed together. This has the advantage that the compiler is able to perform better optimizations and reduces the set of methods that cannot be compiled via the ReadyToRun process. However, as a tradeoff, compilation speed is significantly decreased, and the overall file size of the application is significantly increased. Check out [ReadyToRun Cross platform and architecture restrictions](/dotnet/core/deploying/ready-to-run).
234+
> Starting in .NET 6, support for Composite ReadyToRun compilation has been added. Check out [ReadyToRun Cross platform and architecture restrictions](/dotnet/core/deploying/ready-to-run).
236235
237236
You can also build your app with ReadyToRun from the command line. For more information, see the `-p:PublishReadyToRun=true` option in [`dotnet publish`](/dotnet/core/tools/dotnet-publish).
238237

includes/functions-dotnet-supported-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The following table shows the highest level of .NET Core or .NET Framework that
2323
| Functions 1.x | .NET Framework 4.8 | n/a |
2424

2525

26-
<sup>1</sup> Build process also requires [.NET 6 SDK](https://dotnet.microsoft.com/download). Support for .NET Framework 4.8 is in preview.
26+
<sup>1</sup> Build process also requires [.NET 6 SDK](https://dotnet.microsoft.com/download). Support for .NET Framework 4.8 is in GA.
2727

2828
<sup>2</sup> Build process also requires [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download).
2929

0 commit comments

Comments
 (0)