12 instantiations of PublishedApplication
IIS.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
src\Servers\IIS\IIS\test\Common.FunctionalTests\MultiApplicationTests.cs (2)
130_publishedApplication = new PublishedApplication(destination.FullName, Logger); 141_rootApplication = new PublishedApplication(Helpers.CreateEmptyApplication(config, contentRoot), Logger);
IIS.LongTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
IIS.NewHandler.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
IIS.NewShim.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
IIS.ShadowCopy.Tests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
IISExpress.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
40return Task.FromResult(new PublishedApplication(target.FullName, logger));
src\Servers\IIS\IIS\test\Common.FunctionalTests\MultiApplicationTests.cs (2)
130_publishedApplication = new PublishedApplication(destination.FullName, Logger); 141_rootApplication = new PublishedApplication(Helpers.CreateEmptyApplication(config, contentRoot), Logger);
Microsoft.AspNetCore.Server.IntegrationTesting (2)
ApplicationPublisher.cs (1)
99return Task.FromResult(new PublishedApplication(publishDirectory.FullName, logger));
CachingApplicationPublisher.cs (1)
47return new PublishedApplication(CopyPublishedOutput(publishedApplication, logger), logger);
22 references to PublishedApplication
IIS.FunctionalTests (3)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
src\Servers\IIS\IIS\test\Common.FunctionalTests\MultiApplicationTests.cs (2)
34private PublishedApplication _publishedApplication; 35private PublishedApplication _rootApplication;
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
959using var publishedApp = await deploymentParameters.ApplicationPublisher.Publish(deploymentParameters, LoggerFactory.CreateLogger("test"));
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
959using var publishedApp = await deploymentParameters.ApplicationPublisher.Publish(deploymentParameters, LoggerFactory.CreateLogger("test"));
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
959using var publishedApp = await deploymentParameters.ApplicationPublisher.Publish(deploymentParameters, LoggerFactory.CreateLogger("test"));
IIS.ShadowCopy.Tests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
IISExpress.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\PublishedApplicationPublisher.cs (1)
23public override Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
src\Servers\IIS\IIS\test\Common.FunctionalTests\MultiApplicationTests.cs (2)
34private PublishedApplication _publishedApplication; 35private PublishedApplication _rootApplication;
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (1)
959using var publishedApp = await deploymentParameters.ApplicationPublisher.Publish(deploymentParameters, LoggerFactory.CreateLogger("test"));
Microsoft.AspNetCore.Server.IntegrationTesting (8)
ApplicationPublisher.cs (1)
20public virtual Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger)
CachingApplicationPublisher.cs (6)
10private readonly Dictionary<DotnetPublishParameters, PublishedApplication> _publishCache = new Dictionary<DotnetPublishParameters, PublishedApplication>(); 16public override async Task<PublishedApplication> Publish(DeploymentParameters deploymentParameters, ILogger logger) 41if (!_publishCache.TryGetValue(dotnetPublishParameters, out var publishedApplication)) 50private static string CopyPublishedOutput(PublishedApplication application, ILogger logger) 77foreach (var publishedApp in _publishCache.Values)
Deployers\ApplicationDeployer.cs (1)
19private PublishedApplication _publishedApplication;