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

Net8.0 #90

Merged
merged 8 commits into from
Dec 2, 2023
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
[*.cs]

#use hard tabs for indentation
indent_style = tab

# IDE0160: Convert to file-scoped namespace
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/2048 Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\2048\2048.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Battleship Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Battleship\Battleship.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Beep Pad Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Beep Pad\Beep Pad.csproj" --configuration Release
8 changes: 4 additions & 4 deletions .github/workflows/Binaries Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: dotnet publish win-x64
run: dotnet publish dotnet-console-games.slnf --output bin/win-x64 --configuration Release -p:PublishSingleFile=true --runtime win-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false
run: dotnet publish dotnet-console-games.slnf --output bin/win-x64 --configuration Release -p:PublishSingleFile=true --runtime win-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true
- name: dotnet publish osx-x64
run: dotnet publish dotnet-console-games.slnf --output bin/osx-x64 --configuration Release -p:PublishSingleFile=true --runtime osx-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false
run: dotnet publish dotnet-console-games.slnf --output bin/osx-x64 --configuration Release -p:PublishSingleFile=true --runtime osx-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true
- name: dotnet publish linux-x64
run: dotnet publish dotnet-console-games.slnf --output bin/linux-x64 --configuration Release -p:PublishSingleFile=true --runtime linux-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true -p:EnableTrimAnalyzer=false
run: dotnet publish dotnet-console-games.slnf --output bin/linux-x64 --configuration Release -p:PublishSingleFile=true --runtime linux-x64 --self-contained -p:DebugType=embedded -p:PublishTrimmed=true
- name: CODEOWNERS
run: echo "* @ZacharyPatten" > bin/CODEOWNERS
- name: push to binaries branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Blackjack Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Blackjack\Blackjack.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Bound Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Bound\Bound.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Checkers Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Checkers\Checkers.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Clicker Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Clicker\Clicker.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Connect 4 Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Connect 4\Connect 4.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Console Monsters Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Console Monsters\Console Monsters.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Darts Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Darts\Darts.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Dice Game Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Dice Game\Dice Game.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Draw Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Draw\Draw.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Drive Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Drive\Drive.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Duck Hunt Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Duck Hunt\Duck Hunt.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Fighter Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Fighter\Fighter.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Flappy Bird Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Flappy Bird\Flappy Bird.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Flash Cards Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Flash Cards\Flash Cards.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Gravity Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Gravity\Gravity.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Guess A Number Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Guess A Number\Guess A Number.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Hangman Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Hangman\Hangman.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Helicopter Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Helicopter\Helicopter.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Hurdles Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Hurdles\Hurdles.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Mancala Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Mancala\Mancala.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Maze Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Maze\Maze.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Memory Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Memory\Memory.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Minesweeper Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Minesweeper\Minesweeper.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Oligopoly Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Oligopoly\Oligopoly.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/PacMan Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\PacMan\PacMan.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Pong Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Pong\Pong.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Quick Draw Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Quick Draw\Quick Draw.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Rock Paper Scissors Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Rock Paper Scissors\Rock Paper Scissors.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Role Playing Game Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Role Playing Game\Role Playing Game.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Roll And Move Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Roll And Move\Roll And Move.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Rythm Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Rythm\Rythm.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Shmup Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Shmup\Shmup.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Simon Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Simon\Simon.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Sliding Puzzle Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Sliding Puzzle\Sliding Puzzle.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Snake Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Snake\Snake.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Sudoku Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Sudoku\Sudoku.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tanks Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tanks\Tanks.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tents Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tents\Tents.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tetris Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tetris\Tetris.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tic Tac Toe Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tic Tac Toe\Tic Tac Toe.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tower Of Hanoi Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tower Of Hanoi\Tower Of Hanoi.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Tug Of War Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Tug Of War\Tug Of War.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Type Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Type\Type.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Website Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Website\Website.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Website Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: publish website
run: dotnet publish Projects/Website/Website.csproj --configuration Release
- name: index.html base tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Whack A Mole Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Whack A Mole\Whack A Mole.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Wordle Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Wordle\Wordle.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Wumpus World Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Wumpus World\Wumpus World.csproj" --configuration Release
2 changes: 1 addition & 1 deletion .github/workflows/Yahtzee Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- run: dotnet build "Projects\Yahtzee\Yahtzee.csproj" --configuration Release
Loading
Loading