-
Notifications
You must be signed in to change notification settings - Fork 0
Building from Source
| Getting Started | Using the App | Technical Reference | Project |
|---|---|---|---|
| Home | Usage Guide | Architecture | Repository |
| Installation | Conversion Methods | XDVDFS Technical Docs | Building from Source |
| XISO Explorer | Troubleshooting & FAQ |
| Requirement | Notes |
|---|---|
| Windows 10/11 (x64 or ARM64) | WPF application; Windows-only |
| .NET 10 SDK | Matches the net10.0-windows target; global.json pins the required SDK version |
| Git | To clone the repository |
Verify your SDK:
dotnet --versiongit clone https://github.com/purelogiccode/BatchConvertIsoToXiso.git
cd BatchConvertIsoToXisoBuild the full solution (application + test project):
dotnet build CSharp_BatchConvertIsoToXiso.slnOr build and run the application directly:
dotnet run --project BatchConvertIsoToXisoThe application project bundles Windows executables that are copied to the output directory on every build:
-
extract-xiso.exe,xdvdfs.exe— external conversion engines -
bchunk.exe— CUE/BIN to ISO conversion -
7za.exe,7za_arm64.exe— 7-Zip CLI fallback for archive extraction
These are committed to the repository, so no extra download steps are needed.
The test suite uses xUnit with Moq:
dotnet test CSharp_BatchConvertIsoToXiso.slnThe suite covers models, services (orchestrator, extractor, movers, path helpers, update checker, and more), and the XISO binary layer (XDVDFS, VolumeDescriptor, FileEntry, Utils).
Both projects enforce analyzer rules (Meziantou.Analyzer, Roslynator) as build warnings. Treat new warnings in changed code as errors in practice — keep the build clean.
Example for a framework-dependent x64 publish:
dotnet publish BatchConvertIsoToXiso -c Release -r win-x64 --self-contained falseFor a self-contained single-folder build (no .NET runtime requirement for end users):
dotnet publish BatchConvertIsoToXiso -c Release -r win-x64 --self-contained trueUse -r win-arm64 for ARM64 builds. Ensure the bundled executables end up next to the published BatchConvertIsoToXiso.exe.
-
Target framework:
net10.0-windowswith<UseWPF>true</UseWPF>. - Nullable + implicit usings are enabled.
- The
References/folder (vendored sources such as the xdvdfs Rust workspace, if present) is excluded from compilation. - Version numbers are maintained in
BatchConvertIsoToXiso.csproj(AssemblyVersion/FileVersion); the update checker compares against GitHub release tags.
Batch ISO to XISO Converter
Using the App
Technical Reference
Project