From 4be586d903da2b0dbba23f4978e14ad7d51edcbf Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Thu, 16 Nov 2017 16:17:28 +0200 Subject: Added PMR support for code composer. --- .../Tango.Protobuf/Compilers/CCompiler.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Software/Visual_Studio/Tango.Protobuf/Compilers') diff --git a/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs b/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs index 18aab84c6..0d97c9711 100644 --- a/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs +++ b/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs @@ -37,5 +37,24 @@ namespace Tango.Protobuf.Compilers { return "protoc-c"; } + + /// + /// Compiles the specified .proto message file. + /// + /// .proto file to compile + /// + /// A list of compiled results. + /// + //public override IEnumerable CompileFile(string inputFile) + //{ + // var files = base.CompileFile(inputFile); + + // foreach (var file in files) + // { + // file.Name = file.Name.Replace(".pb-c", ""); + // } + + // return files; + //} } } -- cgit v1.3.1