Skip to content

[Pull Request] A project level refactoring #337

[Pull Request] A project level refactoring

[Pull Request] A project level refactoring #337

Workflow file for this run

name: Build Plugins
on:
push:
branches:
- main
paths-ignore:
- ".*/**"
- "**/*.md"
pull_request:
branches:
- main
paths-ignore:
- ".*/**"
- "**/*.md"
workflow_dispatch:
jobs:
build-plugins-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
- name: Setup Sub-submodules in `KitX SDK`
working-directory: "KitX SDK"
run: |
git submodule update --init --recursive
- name: Build Plugins
working-directory: "KitX SDK/KitX Plugins"
run: |
cd "TestPlugin.CSharp"
dotnet build -c Release
cd ..
cd "TestPlugin.Winform.Core"
dotnet build -c Release
cd ..
cd "TestPlugin.WPF.Core"
dotnet build -c Release
cd ..