aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Tango.NET/Tango.Protobuf/Compilers/CSharpCompiler.cs
blob: 4f9e52a749b4629ba728f601f198024ae9681c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Protobuf.Compilers
{
    public class CSharpCompiler : ProtoCompiler
    {
        public override ProtoLanguage Language => ProtoLanguage.CSharp;

        protected override string GetProtoArguments()
        {
            return "--csharp_out";
        }
    }
}