Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 929 Bytes

File metadata and controls

32 lines (22 loc) · 929 Bytes

Preparations

  1. Create a GibHub account
  2. Developer Command prompt - get course files

git clone https://github.com/CNinnovation/ASPNETCoreDec2017

  1. Create a subdirectory in the course samples with your name (e.g. Christian)

  2. Create a new file in this subdirectory

  3. git add newfile.txt

  4. git commit -m "added newfile.txt"

  5. git pull

  6. git push

  7. get Professional C# samples

git clone https://github.com/ProfessionalCSharp/ProfessionalCSharp7

Lab 1 - Use the dotnet Tools

  1. Create a console application with dotnet new
  2. Restore Libraries with dotnet restore
  3. Compile the project with dotnet build
  4. Run the application with dotnet run
  5. Create a NuGet project with dotnet pack

Questions:

  1. Can I create a Hello, World application using F#?
  2. Which version of the .NET CLI are you using?
  3. If multiple versions of .NET Core SDKs are installed, how can you select the version to use?