Setting up the Commercial Plus private NuGet Feed
First be sure to add the Prism NuGet feed and your credentials as secrets in GitHub.
PRISM_NUGET_FEED: `https://nuget.prismlibrary.com/v3/index.json PRISM_NUGET_USER: The email of the licensed user PRISM_NUGET_API_KEY: The License Key you have generated on https://prismlibrary.com
- name: Add NuGet Feed
shell: pwsh
run: |
dotnet nuget add source ${{ secrets.PRISM_NUGET_FEED }} -u ${{ secrets.PRISM_NUGET_USER }} -p ${{ secrets.PRISM_API_KEY }} -n InHouse --store-password-in-clear-text