Files
linux-packaging-mono/external/aspnetwebstack/src/System.Web.WebPages.Deployment/IBuildManager.cs

14 lines
337 B
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.IO;
namespace System.Web.WebPages.Deployment
{
internal interface IBuildManager
{
Stream CreateCachedFile(string fileName);
Stream ReadCachedFile(string fileName);
}
}