Everytime you create a new C# project with Get It you need to run some commands to setup the project. This will be the same procedure everytime. So while you can copy and paste the following instructions, I find it better to type them by hand. After setting up a few projects you won’t need the help anymore.
-
Open a command terminal and run the following commands to create a new C# project called
GetItStarted, reference the latest stable version ofGetItand open the project with VSCode:dotnet new console -o GetItStarted cd .\GetItStarted dotnet add package GetIt dotnet restore code . - Open
Program.csand replace the the whole content withGame.ShowSceneAndAddTurtle(); - Press F5 to launch the program and you should see a window with a turtle at its center.
Congratulations, you just created and ran a brand new C# program with Get It.