You've already forked linux-packaging-mono
14 lines
337 B
C#
14 lines
337 B
C#
![]() |
// 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);
|
|||
|
}
|
|||
|
}
|