PackFileService is an interface now! #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build-Application | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
workflow_dispatch: # Add this line to enable manual triggering | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '9.x' | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build the project | |
run: dotnet build AssetEditor\AssetEditor.csproj --no-restore | |