Contributions are very welcome!
- Install .NET 6: https://get.dot.net
- Install VSCode
- Run (F5)
The .vscode launch config has several parameters configured. When new flags are added, its best to add them to the launch config for easier testing.
dotnet build
This will build a debug version to the bin
folder of the project. The output
will be in the bin\Debug\net6.0
folder by default.
To generate an executable similar to the official release, see the github work-flows YAML. It has the correct commands for the different platforms. For example:
dotnet publish -r linux-x64 -c Release -p:Version=99.99.999 --no-self-contained -o output/linux-x64
dotnet test .\AzureDevOps.WikiPDFExport.Test\