We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setProfileEnvironment
I'd like to request the ability to set the setProfileEnvironment attribute when creating a new IIS Application Pool.
The setProfileEnvironment attribute was added to IIS 8.0. See https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/applicationpools/add/processmodel#compatibility
For example,
<MSBuild.ExtensionPack.Web.Iis7AppPool TaskAction="Create" Name="NewAppPool100" SetProfileEvironment="True" />
The result should update C:\Windows\System32\inetsrv\Config\applicationHost.config accordingly.
C:\Windows\System32\inetsrv\Config\applicationHost.config
<configuration> <system.applicationHost> <applicationPools> <add name="NewAppPool100"> <processModel setProfileEnvironment="true" /> </add> </applicationPools> </system.applicationHost> </configuration>
Does this require creating a new task, Iis8AppPool?
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to request the ability to set the
setProfileEnvironment
attribute when creating a new IIS Application Pool.The
setProfileEnvironment
attribute was added to IIS 8.0.See https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/applicationpools/add/processmodel#compatibility
For example,
The result should update
C:\Windows\System32\inetsrv\Config\applicationHost.config
accordingly.For example,
Does this require creating a new task, Iis8AppPool?
Thank you.
The text was updated successfully, but these errors were encountered: