Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.55 KB

File metadata and controls

53 lines (38 loc) · 1.55 KB

Classic Repair Toolbox

Compiler instructions for different operating systems

Windows

  • Load Classic-Repair-Toolbox.slnx in Visual Studio
  • Change build to use RELEASE instead of DEBUG
  • Build it with Build > Build Solution
  • Executable is now available in bin\Release\net10.0\Classic-Repair-Toolbox.exe

Linux

Common for all Linux builds

Fedora

  • Compile RELEASE build
    • dotnet publish -c Release -f net10.0 --self-contained
  • Run application:
    • ./bin/Debug/net10.0/Classic-Repair-Toolbox

Gentoo

  • Show all available .NET SDK versions
    • eselect dotnet list
  • Choose .NET10 SDK, which is profile (1) in this example
    • eselect dotnet set 1
  • Reload system environment variables
    • . /etc/profile
  • Verify the active .NET SDK
    • dotnet --list-sdks
  • Compile RELEASE build
    • dotnet publish -c Release -f net10.0 --self-contained
  • Run application:
    • bin/Release/net10.0/linux-x64/Classic-Repair-Toolbox

Note that it is recommened you always create a RELEASE version, as it otherwise will not check for a new version online. If this is a DEBUG build, it will always show-case a dummy update to visualize the UI for it.

macOS

No help on this yet - please help me in providing these steps.