Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #11

Merged
merged 1 commit into from
Mar 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions 05-Creating-Mini-Game-with-GitHub-Copilot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

# Creating a Mini Game with GitHub Copilot

In this module, we’ll explore how to use GitHub Copilot to build a classic rock, paper, scissors minigame. This hands-on project is designed to sharpen your programming skills and enhance your ability to develop console applications in C#. Best of all, we’ll use GitHub Codespaces, so there’s no need to worry about setting up a development environment. With GitHub Copilot as your AI pair programmer, you can focus on creating your application while effortlessly collaborating with your intelligent coding assistant. Lets begin.
In this module, we’ll explore how to use GitHub Copilot to build a classic rock, paper, scissors minigame. This hands-on project is designed to sharpen your programming skills and enhance your ability to develop console applications in C#. Best of all, we’ll use GitHub Codespaces, so there’s no need to worry about setting up a development environment. With GitHub Copilot as your AI pair programmer, you can focus on creating your application while effortlessly collaborating with your intelligent coding assistant. Let's begin.

</header>


- **Who this is for**: Developers, DevOps Engineers, Software development managers, Testers.
- **Who this is for**: Developers, DevOps Engineers, Software Development Managers, Testers.
- **What you'll learn**: Harnessing GitHub Copilot to create code and add comments to your work.
- **What you'll build**: C# files that will have code generated by Copilot AI for code and comment suggestions.
- **Prerequisites**: GitHub Copilot is available to use for free, sign up for [GitHub Copilot](https://gh.io/copilot).
Expand All @@ -31,7 +31,7 @@ By the end of this module, you'll acquire the skills to be able to:

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/mastering-github-copilot-for-dotnet-csharp-developers?devcontainer_path=.devcontainer%2Fmini-game%2Fdevcontainer.json)

You have already learned a bit about GitHub Codespaces and GitHub Copilot and how they work. In this challenge exercise, your goal is to develop a minigame in C# using GitHub Copilot.
You have already learned a bit about GitHub Codespaces and GitHub Copilot and how they work. In this challenge exercise, your goal is to develop a minigame in C# using GitHub Copilot.

#### Testing your GitHub Codespace

Expand All @@ -58,7 +58,7 @@ The winner of the game is determined by three simple rules:

The computer will be your opponent and can randomly choose one of the elements (**rock**, **paper**, or **scissors**). Your game interaction will be through the console (Terminal).

- The player can choose one of the three options rock, paper, or scissors and should be warned if they enter an invalid option.
- The player can choose one of the three options: rock, paper, or scissors, and should be warned if they enter an invalid option.
- At each round, the player must enter one of the options in the list and be informed if they won, lost, or tied with the opponent.
- By the end of each round, the player can choose whether to play again.
- Display the player's score at the end of the game.
Expand Down