Skip to content

[Pull Request] Organize project structure #318

[Pull Request] Organize project structure

[Pull Request] Organize project structure #318

Workflow file for this run

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@v3
with:
submodules: "true"
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: "6.0.x"
include-prerelease: false
- name: Setup Dotnet SDK
run: |
bitsadmin.exe /rawreturn /transfer getfile https://go.microsoft.com/fwlink/?linkid=2088517 C:\sdk.exe
C:\sdk.exe
- name: Build Loaders
working-directory: "KitX Standard/KitX Loaders"
run: |
cd "KitX.Loader.Winform.Core"
dotnet build -c Release
cd ".."
cd "KitX.Loader.WPF.Core"
dotnet build -c Release
cd ".."