You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.5 KiB
Plaintext
26 lines
1.5 KiB
Plaintext
5 years ago
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
||
|
|
||
|
<system.webServer xdt:Transform="InsertIfMissing">
|
||
|
</system.webServer>
|
||
|
|
||
|
<!-- Search for system.web nodes:
|
||
|
- globally
|
||
|
- under location[@path='.']
|
||
|
- under location[count(@path)=0]
|
||
|
If any of above contains httpModules section - it will be reused.
|
||
|
Otherwise it will be created under /configuration/system.web (globally)
|
||
|
|
||
|
see https://github.com/Microsoft/ApplicationInsights-dotnet-server/blob/develop/Src/Web/Web.Nuget/Resources/web.config.install.xdt
|
||
|
-->
|
||
|
<system.webServer xdt:Locator="XPath(//system.webServer[(count(parent::location) = 0) or (count(parent::location[@path != '.' and count(@path) != 0]) = 0)])">
|
||
|
<modules xdt:Transform="InsertIfMissing">
|
||
|
<remove name="TelemetryCorrelationHttpModule" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)"/>
|
||
|
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation"
|
||
|
preCondition="integratedMode,managedHandler" xdt:Transform="Remove" xdt:Locator="Match(type)"/>
|
||
|
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation"
|
||
|
preCondition="integratedMode,managedHandler" xdt:Transform="InsertIfMissing" xdt:Locator="Match(type)"/>
|
||
|
</modules>
|
||
|
</system.webServer>
|
||
|
</configuration>
|