[Pull Request] A project level refactoring #338
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 Loaders | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- ".*/**" | |
- "**/*.md" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- ".*/**" | |
- "**/*.md" | |
workflow_dispatch: | |
jobs: | |
build-loaders-on-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: dev=main | |
submodules: "true" | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
8.0.x | |
- uses: actions/checkout@v4 | |
- name: Setup Sub-submodules in `KitX SDK` | |
working-directory: "KitX SDK" | |
run: | | |
git submodule update --init --recursive | |
- name: Build Loaders | |
working-directory: "KitX SDK/KitX Loaders" | |
run: | | |
cd "KitX.Loader.CSharp" | |
dotnet build -c Release | |
cd ".." | |
cd "KitX.Loader.Winform.Core" | |
dotnet build -c Release | |
cd ".." | |
cd "KitX.Loader.WPF.Core" | |
dotnet build -c Release | |
cd ".." |