Skip to content

Merge branch 'main' of https://github.com/PrimeBuild-pc/ThreadPilot #5

Merge branch 'main' of https://github.com/PrimeBuild-pc/ThreadPilot

Merge branch 'main' of https://github.com/PrimeBuild-pc/ThreadPilot #5

name: .NET Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ThreadPilot_1.sln
- name: Build project (Release)
run: dotnet build ThreadPilot_1.sln --configuration Release --no-restore