aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/Build/IBuildProvider.cs
blob: ccf44dfcd571a5d45bf3a1a19e1d5c5d4dce19dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.FSE.Common.Build
{
    public enum BuildVariants
    {
        FSE,
        TwineRSM
    }

    public interface IBuildProvider
    {
        BuildVariants CurrentBuild { get; }
        String BuildName { get; }
        bool IsTwineRSM { get; }
    }
}