19 writes to ServerConfigTemplateContent
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
IIS.Microbenchmarks (1)
StartupTimeBenchmark.cs (1)
32ServerConfigTemplateContent = File.ReadAllText("IIS.config"),
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
IIS.ShadowCopy.Tests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
IISExpress.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISSubAppSiteFixture.cs (2)
18deploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.SubApp.Config"); 24deploymentParameters.ServerConfigTemplateContent = reader.ReadToEnd();
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\NginxDeployer.cs (1)
141DeploymentParameters.ServerConfigTemplateContent = DeploymentParameters.ServerConfigTemplateContent
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISDeployer.cs (1)
83DeploymentParameters.ServerConfigTemplateContent = File.ReadAllText("IIS.config");
Microsoft.AspNetCore.WebSockets.ConformanceTests (1)
Autobahn\AutobahnTester.cs (1)
141ServerConfigTemplateContent = (server == ServerType.IISExpress) ? File.ReadAllText(configPath) : null,
ServerComparison.FunctionalTests (3)
HelloWorldTest.cs (1)
51deploymentParameters.ServerConfigTemplateContent = Helpers.GetNginxConfigContent("nginx.conf");
ResponseCompressionTests.cs (1)
103deploymentParameters.ServerConfigTemplateContent = hostCompression
ResponseTests.cs (1)
96deploymentParameters.ServerConfigTemplateContent = Helpers.GetNginxConfigContent("nginx.conf");
6 references to ServerConfigTemplateContent
Microsoft.AspNetCore.Server.IntegrationTesting (3)
Deployers\NginxDeployer.cs (3)
141DeploymentParameters.ServerConfigTemplateContent = DeploymentParameters.ServerConfigTemplateContent 153Logger.LogTrace($"Config File Content:{Environment.NewLine}===START CONFIG==={Environment.NewLine}{{configContent}}{Environment.NewLine}===END CONFIG===", DeploymentParameters.ServerConfigTemplateContent); 155File.WriteAllText(_configFile, DeploymentParameters.ServerConfigTemplateContent);
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (3)
IISDeployer.cs (2)
81if (string.IsNullOrEmpty(DeploymentParameters.ServerConfigTemplateContent)) 311var config = XDocument.Parse(DeploymentParameters.ServerConfigTemplateContent ?? File.ReadAllText("IIS.config"));
IISExpressDeployer.cs (1)
275var serverConfig = DeploymentParameters.ServerConfigTemplateContent;