@@ -12,7 +12,7 @@ and (re)visit the :ref:`Scripting section <doc_scripting>` of the
1212step-by-step tutorial.
1313
1414C# is a high-level programming language developed by Microsoft. In Godot,
15- it is implemented with .NET 8.0 .
15+ it is implemented with the modern .NET runtime .
1616
1717.. attention ::
1818
@@ -33,7 +33,7 @@ it is implemented with .NET 8.0.
3333Prerequisites
3434-------------
3535
36- Godot bundles the parts of .NET needed to run already compiled games.
36+ Godot bundles the parts of .NET needed to run already- compiled games.
3737However, Godot does not bundle the tools required to build and compile
3838games, such as MSBuild and the C# compiler. These are
3939included in the .NET SDK, and need to be installed separately.
@@ -43,6 +43,7 @@ version of Godot.
4343
4444Download and install the latest stable version of the SDK from the
4545`.NET download page <https://dotnet.microsoft.com/download >`__.
46+ Godot 4.5 requires .NET 8 or later, but exporting to Android requires .NET 9 or later.
4647
4748.. important ::
4849
@@ -355,8 +356,8 @@ You can read more about this error on the `C# language reference <https://learn.
355356Performance of C# in Godot
356357--------------------------
357358
358- .. seealso ::
359-
359+ .. seealso ::
360+
360361 For a performance comparison of the languages Godot supports,
361362 see :ref: `doc_faq_which_programming_language_is_fastest `.
362363
@@ -419,8 +420,8 @@ the ``.csproj`` file located in the project root:
419420 ...
420421 </Project >
421422
422- As of Godot 3.2.3, Godot automatically downloads and sets up newly added NuGet
423- packages the next time it builds the project.
423+ Godot automatically downloads and sets up newly added NuGet packages
424+ the next time it builds the project.
424425
425426Profiling your C# code
426427----------------------
0 commit comments