https://pulumi.com logo
Title
l

late-diamond-14259

04/21/2021, 8:11 PM
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

bored-oyster-3147

04/21/2021, 8:14 PM
You could build it yourself and then provide pulumi the binary instead of having pulumi build it
l

late-diamond-14259

04/22/2021, 5:11 PM
Perfect, thank you @bored-oyster-3147