This message was deleted.
# dotnet
s
This message was deleted.
i
For .NET x64, in SiteConfigArgs I use:
Copy code
NetFrameworkVersion = "6",
Use32BitWorkerProcess = false,
1
b
That answers another question I had. Setting the framework version to 6 instead of v6.0 fixes the stack problem. When I try to set the Use32BitWorkerProcess to false, it fails, but upon reflection I think that's because I'm using a free service plan which supports only 32 bit app services. Thanks!
🎉 1
m
is there a process I can follow to answer this kind of question
I've been having a lot of success in property value "discovery" using the import resource operation https://www.pulumi.com/docs/guides/adopting/import/ 1. Create an app with the desired configuration in the portal. 2. Declare an app via pulumi with the
ImportId
to what is in (1). 3. Use the "details" view (
pulumi up
) to see diffs, which are very helpful for what properties and values need configuring in (2).