add custom chess engine

This commit is contained in:
Josh-Heaps
2026-06-08 13:58:22 -06:00
parent d2ae34f530
commit c3280aa6d3
42 changed files with 3033 additions and 168 deletions
+2 -2
View File
@@ -24,9 +24,9 @@ jobs:
with:
dotnet-version: '8.0.x' # adjust if needed
- name: Restore
run: dotnet restore
run: dotnet restore JoshHeaps.Net/JoshHeaps.Net.csproj
- name: Publish
run: dotnet publish -c Release -o ./publish
run: dotnet publish JoshHeaps.Net/JoshHeaps.Net.csproj -c Release -o ./publish
- name: Upload artifact
uses: actions/upload-artifact@v4
+2 -2
View File
@@ -19,6 +19,6 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore JoshHeaps.Net.slnf
- name: Build
run: dotnet build --no-restore
run: dotnet build JoshHeaps.Net.slnf --no-restore
+2 -2
View File
@@ -19,10 +19,10 @@ jobs:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore JoshHeaps.Net.slnf
- name: Build solution
run: dotnet build --no-restore
run: dotnet build JoshHeaps.Net.slnf --no-restore
- name: Install Playwright browsers
run: |