| File: PublishedApplication.cs | Web Access |
| Project: src\aspnetcore\src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj (Microsoft.AspNetCore.Server.IntegrationTesting) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.Server.IntegrationTesting; public class PublishedApplication : IDisposable { private readonly ILogger _logger; public string Path { get; } public PublishedApplication(string path, ILogger logger) { _logger = logger; Path = path; } public void Dispose() { RetryHelper.RetryOperation( () => Directory.Delete(Path, true), e => _logger.LogWarning($"Failed to delete directory : {e.Message}"), retryCount: 3, retryDelayMilliseconds: 100); } }