- Create a GibHub account
- Developer Command prompt - get course files
-
Create a subdirectory in the course samples with your name (e.g. Christian)
-
Create a new file in this subdirectory
-
git add newfile.txt
-
git commit -m "added newfile.txt"
-
git pull
-
git push
-
get Professional C# samples
git clone https://github.com/ProfessionalCSharp/ProfessionalCSharp7
- Create a console application with dotnet new
- Restore Libraries with dotnet restore
- Compile the project with dotnet build
- Run the application with dotnet run
- Create a NuGet project with dotnet pack
Questions:
- Can I create a Hello, World application using F#?
- Which version of the .NET CLI are you using?
- If multiple versions of .NET Core SDKs are installed, how can you select the version to use?