using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Protobuf.Compilers
{
///
/// Represents a protobuf C# Compiler.
///
///
public class CSharpCompiler : ProtoCompiler
{
///
/// Gets the compiler language.
///
public override CompilerLanguage Language => CompilerLanguage.CSharp;
///
/// Gets the protobuf compiler CLI arguments (without input/output files!).
///
///
protected override string GetProtoArguments()
{
return "--csharp_out";
}
}
}