Is it possible to control C# build options when ru...
# dotnet
l
Is it possible to control C# build options when running
pulumi up
? For example I want to run:
dotnetĀ build /p:GenerateTsProxy=False
. I want to include the
/p:GenerateTsProxy=False
. something like this
pulumi up -- /p:GenerateTsProxy=False
b
You could build it yourself and then provide pulumi the binary instead of having pulumi build it
l
Perfect, thank you @bored-oyster-3147