### Commit Git Changes with Detailed Message
Source: https://github.com/paulloz/godot-ink/blob/main/CONTRIBUTING.md
Illustrates how to write a multi-line Git commit message from the command line, including a brief summary and a detailed description of the changes and their impact. This helps in providing clear commit history for larger changes.
```Shell
$ git commit -m "A brief summary of the commit
>
> A description of what changed and its impact."
```
--------------------------------
### Add GodotInk Project Reference to .csproj
Source: https://github.com/paulloz/godot-ink/blob/main/README.md
This XML snippet adds a project import for GodotInk's properties file into your C# project (.csproj). This step is crucial for the GodotInk addon to be correctly recognized and built within your Godot project. Ensure this line is placed before the closing tag.
```XML
```
--------------------------------
### Add GodotInk Project Reference to CSPROJ
Source: https://github.com/paulloz/godot-ink/blob/main/addons/GodotInk/README.md
This XML snippet adds a project reference to the GodotInk addon in a C# project's .csproj file. It ensures that the GodotInk properties are imported during the build process, which is necessary for the addon to function correctly within Godot Engine 4. This line should be placed before the closing tag.
```XML
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.