CI/CD Integration

Store your license key as a secret and set the DEMEANOR_LICENSE environment variable.

GitHub Actions

- name: Build and obfuscate
  env:
    DEMEANOR_LICENSE: ${{ secrets.DEMEANOR_LICENSE }}
  run: dotnet build -c Release

Azure Pipelines

- task: DotNetCoreCLI@2
  inputs:
    command: build
    arguments: '-c Release'
  env:
    DEMEANOR_LICENSE: $(DemeanorLicense)

Add DemeanorLicense as a secret variable in your pipeline settings.