Skip to content
New issue

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

Add support for the setProfileEnvironment attribute when creating a new IIS Application Pool #89

Open
icnocop opened this issue Jul 26, 2018 · 0 comments

Comments

@icnocop
Copy link

icnocop commented Jul 26, 2018

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.

For example,

<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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant