aspnetcore/AspNetCoreSdkTests/Util/TempDir.cs

20 lines
316 B
C#

using System;
namespace AspNetCoreSdkTests.Util
{
public class TempDir : IDisposable
{
public string Path { get; }
public TempDir()
{
Path = IOUtil.GetTempDir();
}
public void Dispose()
{
IOUtil.DeleteDir(Path);
}
}
}