Files
LegacyWeaveLoader/docs/BUILDING.md
2026-03-10 22:37:07 -05:00

483 B

Building

Prerequisites

  • Visual Studio 2022+ with C++ Desktop Development and .NET 8 workloads
  • CMake 3.24+
  • .NET 8 SDK

Build steps

Build everything from the repo root:

dotnet build WeaveLoader.sln -c Debug

Outputs go to build/.

Notes

  • The launcher builds the native runtime automatically.
  • If you only need the runtime DLL, you can build it directly:
cd WeaveLoaderRuntime
cmake -B build -A x64
cmake --build build --config Release