Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IBuildManager.cs « System.Web.WebPages.Deployment « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a71faabb0ec98bdc7660205a22dfc4eef9034167 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.IO;

namespace System.Web.WebPages.Deployment
{
    internal interface IBuildManager
    {
        Stream CreateCachedFile(string fileName);

        Stream ReadCachedFile(string fileName);
    }
}