finish rewrite; port to cmake, loads of other changes

Theres documentation at https://sylvessa.zip/fourkit/ now. And a bunch of other changes. Check the discord server for a more comprehensive list
This commit is contained in:
sylvessa 2026-03-21 13:52:26 -05:00
parent ecb3f00bd6
commit f5f9aa1cf5
107 changed files with 14289 additions and 40 deletions

View file

@ -5,6 +5,7 @@ on:
push:
branches:
- 'main'
- 'feature/plugin-api'
paths-ignore:
- '.gitignore'
- '*.md'
@ -34,6 +35,15 @@ jobs:
- name: Set platform lowercase
run: echo "MATRIX_PLATFORM=$('${{ matrix.platform }}'.ToLower())" >> $env:GITHUB_ENV
- name: Create temporary global.json
run: |
echo '{"sdk":{"version": "10.0.201"}}' > ./global.json
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.201'
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
@ -60,7 +70,10 @@ jobs:
- name: Stage exe and pdb
if: matrix.platform == 'Windows64'
run: |
Copy-Item ./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.exe staging/
Copy-Item @(
"./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.exe",
"./build/${{ env.MATRIX_PLATFORM }}/Minecraft.Server/Release/Minecraft.Server.Fourkit.dll"
) staging/
- name: Upload artifacts
uses: actions/upload-artifact@v6