### Install Rimworld Dotnet Template Source: https://github.com/zeta-of-the-rim/rimwold-dotnet-template/blob/main/README.md Install the Rimworld Dotnet Template globally using the dotnet CLI. ```bash dotnet new --install . ``` -------------------------------- ### Create a New Rimworld Mod Project Source: https://github.com/zeta-of-the-rim/rimwold-dotnet-template/blob/main/README.md Create a new Rimworld mod project within your mod folder using the installed template. ```bash mkdir "Your Mod Name" cd "Your Mod Name" dotnet new RimMod ``` -------------------------------- ### Navigate to Cloned Directory Source: https://github.com/zeta-of-the-rim/rimwold-dotnet-template/blob/main/README.md Change the current directory to the cloned Rimworld Dotnet Template folder. ```bash cd RimMod ``` -------------------------------- ### Clone Rimworld Dotnet Template Repository Source: https://github.com/zeta-of-the-rim/rimwold-dotnet-template/blob/main/README.md Clone the Rimworld Dotnet Template repository to your local machine using Git Bash. ```bash git clone https://github.com/Zeta-of-the-rim/Rimwold-Dotnet-Template.git "RimMod" ``` -------------------------------- ### Uninstall Rimworld Dotnet Template Source: https://github.com/zeta-of-the-rim/rimwold-dotnet-template/blob/main/README.md Uninstall the Rimworld Dotnet Template using the dotnet CLI. ```bash dotnet new --uninstall RimMod ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.