mirror of
https://github.com/stan220/godot-docs.git
synced 2026-09-08 17:28:58 +00:00
Merge pull request #11348 from Calinou/csharp-basics-net-9
Update C# basics for .NET 9
This commit is contained in:
@@ -12,7 +12,7 @@ and (re)visit the :ref:`Scripting section <doc_scripting>` of the
|
||||
step-by-step tutorial.
|
||||
|
||||
C# is a high-level programming language developed by Microsoft. In Godot,
|
||||
it is implemented with .NET 8.0.
|
||||
it is implemented with the modern .NET runtime.
|
||||
|
||||
.. attention::
|
||||
|
||||
@@ -33,7 +33,7 @@ it is implemented with .NET 8.0.
|
||||
Prerequisites
|
||||
-------------
|
||||
|
||||
Godot bundles the parts of .NET needed to run already compiled games.
|
||||
Godot bundles the parts of .NET needed to run already-compiled games.
|
||||
However, Godot does not bundle the tools required to build and compile
|
||||
games, such as MSBuild and the C# compiler. These are
|
||||
included in the .NET SDK, and need to be installed separately.
|
||||
@@ -43,6 +43,7 @@ version of Godot.
|
||||
|
||||
Download and install the latest stable version of the SDK from the
|
||||
`.NET download page <https://dotnet.microsoft.com/download>`__.
|
||||
Godot 4.5 requires .NET 8 or later, but exporting to Android requires .NET 9 or later.
|
||||
|
||||
.. important::
|
||||
|
||||
@@ -419,8 +420,8 @@ the ``.csproj`` file located in the project root:
|
||||
...
|
||||
</Project>
|
||||
|
||||
As of Godot 3.2.3, Godot automatically downloads and sets up newly added NuGet
|
||||
packages the next time it builds the project.
|
||||
Godot automatically downloads and sets up newly added NuGet packages
|
||||
the next time it builds the project.
|
||||
|
||||
Profiling your C# code
|
||||
----------------------
|
||||
|
||||
Reference in New Issue
Block a user