Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Installers/RuntimeSiteExtension/applicationHost.xdt')
-rw-r--r--src/Installers/RuntimeSiteExtension/applicationHost.xdt29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Installers/RuntimeSiteExtension/applicationHost.xdt b/src/Installers/RuntimeSiteExtension/applicationHost.xdt
new file mode 100644
index 0000000000..159bc8d646
--- /dev/null
+++ b/src/Installers/RuntimeSiteExtension/applicationHost.xdt
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
+
+ <xdt:Import path="%XDT_EXTENSIONPATH%\Microsoft.Web.Xdt.Extensions.dll"
+ namespace="Microsoft.Web.Xdt.Extensions" />
+
+ <system.webServer xdt:Transform="InsertIfMissing">
+ <runtime xdt:Transform="InsertIfMissing" >
+ <environmentVariables xdt:Transform="InsertIfMissing">
+ <add name="PATH" value="%XDT_EXTENSIONPATH%;%USERPROFILE%\.dotnet\tools;%PATH%" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
+ <add name="DOTNET_SKIP_FIRST_TIME_EXPERIENCE" value="1" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
+ <add name="DOTNET_ROOT" value="%XDT_EXTENSIONPATH%" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
+ </environmentVariables>
+ </runtime>
+
+ <globalModules>
+ <add name="AspNetCoreModuleV2" image="%XDT_EXTENSIONPATH%\ancm\aspnetcorev2.dll" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
+ </globalModules>
+ </system.webServer>
+
+ <location>
+ <system.webServer>
+ <modules>
+ <add name="AspNetCoreModuleV2" lockItem="true" xdt:Locator="Match(name)" xdt:Transform="InsertIfMissing" />
+ </modules>
+ </system.webServer>
+ </location>
+
+</configuration> \ No newline at end of file