Merge pull request #1476 from YeldhamDev/csharp_indentation_fix

Fixed number of spaces in the indentation of C# basics page
This commit is contained in:
Max Hilbrunner
2018-05-26 20:23:16 +02:00
committed by mhilbrunner
parent c27af7e4c6
commit e9ee4296fc

View File

@@ -70,7 +70,7 @@ Example: If you created a script (e.g. ``Test.cs``) and delete it in Godot, comp
You can for now simply open up the ``.csproj`` and look for the ``ItemGroup``, there should be a line included like the following:
.. code-block:: xml
:emphasize-lines: 2
:emphasize-lines: 2
<ItemGroup>
<Compile Include="Test.cs" />``
@@ -152,12 +152,12 @@ can also be added manually by adding the package reference in the .csproj file
located in the project root:
.. code-block:: xml
:emphasize-lines: 2
:emphasize-lines: 2
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2"/>
</ItemGroup>
...
...
</Project>