Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Build your own version

Geovanni Perez edited this page Nov 18, 2019 · 2 revisions

If you need to modify the source code (either backend or frontend). You may require to install .NET Core SDK and Node.js. Run the following command according to your target platform.

Windows

dotnet publish --configuration Release --runtime win-x64 --output "<path>"

Linux (portable)

dotnet publish --configuration Release --runtime linux-x64 /p:PASSCORE_PROVIDER=LDAP --output "<path>"

MacOS (OS X)

dotnet publish --configuration Release --runtime osx-x64 /p:PASSCORE_PROVIDER=LDAP --output "<path>"

Note - The PASSCORE_PROVIDER modifier will use the LDAP Provider instead of Active Directory Provider.

Clone this wiki locally