From 26298fa2aeb11f2c5678a05defa05d5cc0ef1d4f Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 5 Nov 2017 18:58:01 +0200 Subject: Implemented precise package names for Java compiler using a new 'UseDefaultStructure' property for all compilers! --- Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs') diff --git a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs b/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs index 78d754aa5..55f0cf77f 100644 --- a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs +++ b/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs @@ -1,8 +1,11 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; +using Tango.Core.Helpers; +using Tango.Logging; namespace Tango.Protobuf.Compilers { @@ -25,5 +28,10 @@ namespace Tango.Protobuf.Compilers { return "--java_out"; } + + /// + /// Gets a value indicating whether this compiler uses the default folder structure when generating code. + /// + public override bool UsesDefaultStructure => true; } } -- cgit v1.3.1