SETUP.md

March 13, 2025 ยท View on GitHub

Build solution

  1. Install .NET 8

  2. Install .NET MAUI Workloads

    dotnet workload install maui
    
  3. Build

    dotnet restore --configfile NuGet.config
    dotnet build
    

Update ReadMe

  1. Install Python 3
  2. Run pip install MarkdownPP
  3. Optional. You may need to add env variables to path: C:\Program Files\Python312\Scripts. This path should contain markdown-pp.
  4. Run PowerShell script ./md/run.ps1

Clean

find . -name '.DS_Store' -type f -delete

Get-ChildItem .\ -Force -Include Packages,.idea,.vs,bin,obj -Recurse | foreach ($_) { Remove-Item -Path $_.fullname -Force -Recurse }

git clean -dfx