Governor contract deployment fails with "execution reverted: eth_estimateGas"

I'm trying to deploy a Governor contract generated with the contract wizard (https://wizard.openzeppelin.com/#governor) via a simple Nethereum deployment method. Nothing fancy, just beginner's out-of-the-box code. I get as error "execution reverted: eth_estimateGas".

Nethereum code as of Playground.

Contract compiled in VS Code.

What I am doing wrong?

Found out myself by trial and error: when creating StandardTokenDeployment message, I initialized the inherited "Gas" property with 10.000.000 (ten million):

StandardTokenDeployment deploymentMessage = new StandardTokenDeployment(bytecode)
{
TotalSupply = 100000,
Gas = 10000000
};

Perhaps that line of code should be part of the code sample.