File: OperationConfig\ConditionalType.cs
Web Access
Project: src\sdk\src\TemplateEngine\Microsoft.TemplateEngine.Orchestrator.RunnableProjects\Microsoft.TemplateEngine.Orchestrator.RunnableProjects.csproj (Microsoft.TemplateEngine.Orchestrator.RunnableProjects)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.TemplateEngine.Orchestrator.RunnableProjects.OperationConfig
{
    // The commonly used conditional types. If more get added to ConditionalConfig.cs, they should be added here too.
    internal enum ConditionalType
    {
        None,
        Xml,
        Razor,
        CNoComments,
        CLineComments,
        CBlockComments,
        HashSignLineComment,
        RemLineComment,
        MSBuild,
        HamlLineComment,
        JsxBlockComment,
        VB
    }
}