Skip to content

Commit

Permalink
Merge pull request dotnet#95 from dotnet/reversi
Browse files Browse the repository at this point in the history
Reversi
  • Loading branch information
ZacharyPatten committed Dec 13, 2023
2 parents 518a690 + ce41824 commit 188a84c
Show file tree
Hide file tree
Showing 12 changed files with 865 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/Reversi Build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Reversi Build
on:
push:
paths:
- 'Projects/Reversi/**'
- '!**.md'
pull_request:
paths:
- 'Projects/Reversi/**'
- '!**.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- run: dotnet build "Projects\Reversi\Reversi.csproj" --configuration Release
12 changes: 11 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,11 +312,21 @@
"console": "externalTerminal",
"stopAtEntry": false,
},
{
"name": "Reversi",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Reversi",
"program": "${workspaceFolder}/Projects/Reversi/bin/Debug/Reversi.dll",
"cwd": "${workspaceFolder}/Projects/Reversi/bin/Debug",
"console": "externalTerminal",
"stopAtEntry": false,
},
{
"name": "Darts",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build Oligopoly",
"preLaunchTask": "Build Darts",
"program": "${workspaceFolder}/Projects/Darts/bin/Debug/Darts.dll",
"cwd": "${workspaceFolder}/Projects/Darts/bin/Debug",
"console": "externalTerminal",
Expand Down
13 changes: 13 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,19 @@
],
"problemMatcher": "$msCompile",
},
{
"label": "Build Reversi",
"command": "dotnet",
"type": "process",
"args":
[
"build",
"${workspaceFolder}/Projects/Reversi/Reversi.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
],
"problemMatcher": "$msCompile",
},
{
"label": "Build Solution",
"command": "dotnet",
Expand Down
Loading

0 comments on commit 188a84c

Please sign in to comment.