├── .gitattributes ├── .gitignore ├── Cache └── CSharp │ └── Message │ └── Server │ └── Register │ ├── ServerRegister.cs │ └── ServerRegisterIdGenerator.cs ├── Google.Protobuf ├── ByteArray.cs ├── ByteString.cs ├── CodedInputStream.cs ├── CodedOutputStream.ComputeSize.cs ├── CodedOutputStream.cs ├── Collections │ ├── Lists.cs │ ├── MapField.cs │ ├── ProtobufEqualityComparers.cs │ ├── ReadOnlyDictionary.cs │ └── RepeatedField.cs ├── Compatibility │ ├── MethodInfoExtensions.cs │ ├── PropertyInfoExtensions.cs │ ├── StreamExtensions.cs │ └── TypeExtensions.cs ├── FieldCodec.cs ├── FrameworkPortability.cs ├── Google.Protobuf.csproj ├── Google.Protobuf.snk ├── ICustomDiagnosticMessage.cs ├── IDeepCloneable.cs ├── IMessage.cs ├── InvalidJsonException.cs ├── InvalidProtocolBufferException.cs ├── JsonFormatter.cs ├── JsonParser.cs ├── JsonToken.cs ├── JsonTokenizer.cs ├── LimitedInputStream.cs ├── MessageExtensions.cs ├── MessageParser.cs ├── Properties │ └── AssemblyInfo.cs ├── ProtoPreconditions.cs ├── Reflection │ ├── CustomOptions.cs │ ├── Descriptor.cs │ ├── DescriptorBase.cs │ ├── DescriptorPool.cs │ ├── DescriptorUtil.cs │ ├── DescriptorValidationException.cs │ ├── EnumDescriptor.cs │ ├── EnumValueDescriptor.cs │ ├── FieldAccessorBase.cs │ ├── FieldDescriptor.cs │ ├── FieldType.cs │ ├── FileDescriptor.cs │ ├── GeneratedClrTypeInfo.cs │ ├── IDescriptor.cs │ ├── IFieldAccessor.cs │ ├── MapFieldAccessor.cs │ ├── MessageDescriptor.cs │ ├── MethodDescriptor.cs │ ├── OneofAccessor.cs │ ├── OneofDescriptor.cs │ ├── OriginalNameAttribute.cs │ ├── PackageDescriptor.cs │ ├── PartialClasses.cs │ ├── ReflectionUtil.cs │ ├── RepeatedFieldAccessor.cs │ ├── ServiceDescriptor.cs │ ├── SingleFieldAccessor.cs │ └── TypeRegistry.cs ├── UnknownField.cs ├── UnknownFieldSet.cs ├── WellKnownTypes │ ├── Any.cs │ ├── AnyPartial.cs │ ├── Api.cs │ ├── Duration.cs │ ├── DurationPartial.cs │ ├── Empty.cs │ ├── FieldMask.cs │ ├── FieldMaskPartial.cs │ ├── SourceContext.cs │ ├── Struct.cs │ ├── TimeExtensions.cs │ ├── Timestamp.cs │ ├── TimestampPartial.cs │ ├── Type.cs │ ├── ValuePartial.cs │ ├── Wrappers.cs │ └── WrappersPartial.cs └── WireFormat.cs ├── Output └── net35 │ ├── Generator.exe │ ├── Google.Protobuf.dll │ ├── Google.Protobuf.xml │ ├── ProtocolGenerator.exe │ └── google_protoc │ └── protoc.exe ├── ProtobufHelper ├── Properties │ └── AssemblyInfo.cs ├── ProtobufHelper.cs └── ProtobufHelper.csproj ├── ProtocolBuilder ├── IdGenerator │ ├── Id.code │ └── Id.proto ├── ProtocolBuilder.vcxproj ├── ProtocolBuilder.vcxproj.filters └── Server │ ├── ServerRegister.code │ └── ServerRegister.proto ├── ProtocolGenerator.sln ├── ProtocolGenerator ├── Core │ ├── AbstractFileModel.cs │ ├── CSharp │ │ ├── CSharpClass_Id.cs │ │ ├── CSharpClass_IdGenerater.cs │ │ ├── CSharpClass_Proto.cs │ │ ├── CSharpCodeGenerater.cs │ │ └── CSharpGenerater.cs │ ├── Data │ │ ├── Data.cs │ │ ├── DataManager.cs │ │ └── DataParser.cs │ ├── EnumType.cs │ ├── GeneraterCache.cs │ ├── GeneraterManager.cs │ ├── ICodeGenerater.cs │ ├── IGenerater.cs │ ├── Java │ │ ├── JavaClass_Id.cs │ │ ├── JavaClass_IdGenerator.cs │ │ ├── JavaClass_Proto.cs │ │ ├── JavaCodeGenerator.cs │ │ └── JavaGenerator.cs │ ├── Lua │ │ ├── LuaGenerator.cs │ │ └── Lua_Proto.cs │ └── ProtoBuf │ │ ├── ProtoFileGenerater.cs │ │ └── ProtoGenerater.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ProtocolGenerator.csproj └── Utils │ ├── FileUtil.cs │ └── StringUtil.cs ├── ProtocolLib ├── IdGenerator │ └── Id.cs ├── ProtocolLib.csproj └── Server │ └── Register │ ├── ServerRegister.cs │ └── ServerRegisterIdGenerator.cs ├── README.md ├── UnitTest ├── Properties │ └── AssemblyInfo.cs ├── UnitTest.cs ├── UnitTest.csproj └── packages.config └── keys ├── Google.Protobuf.public.snk ├── Google.Protobuf.snk └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /Cache/CSharp/Message/Server/Register/ServerRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Cache/CSharp/Message/Server/Register/ServerRegister.cs -------------------------------------------------------------------------------- /Cache/CSharp/Message/Server/Register/ServerRegisterIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Cache/CSharp/Message/Server/Register/ServerRegisterIdGenerator.cs -------------------------------------------------------------------------------- /Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /Google.Protobuf/CodedOutputStream.ComputeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/CodedOutputStream.ComputeSize.cs -------------------------------------------------------------------------------- /Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /Google.Protobuf/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Collections/Lists.cs -------------------------------------------------------------------------------- /Google.Protobuf/Collections/MapField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Collections/MapField.cs -------------------------------------------------------------------------------- /Google.Protobuf/Collections/ProtobufEqualityComparers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Collections/ProtobufEqualityComparers.cs -------------------------------------------------------------------------------- /Google.Protobuf/Collections/ReadOnlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Collections/ReadOnlyDictionary.cs -------------------------------------------------------------------------------- /Google.Protobuf/Collections/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Collections/RepeatedField.cs -------------------------------------------------------------------------------- /Google.Protobuf/Compatibility/MethodInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Compatibility/MethodInfoExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/Compatibility/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/Compatibility/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Compatibility/StreamExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/Compatibility/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Compatibility/TypeExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /Google.Protobuf/FrameworkPortability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/FrameworkPortability.cs -------------------------------------------------------------------------------- /Google.Protobuf/Google.Protobuf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Google.Protobuf.csproj -------------------------------------------------------------------------------- /Google.Protobuf/Google.Protobuf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Google.Protobuf.snk -------------------------------------------------------------------------------- /Google.Protobuf/ICustomDiagnosticMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/ICustomDiagnosticMessage.cs -------------------------------------------------------------------------------- /Google.Protobuf/IDeepCloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/IDeepCloneable.cs -------------------------------------------------------------------------------- /Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /Google.Protobuf/InvalidJsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/InvalidJsonException.cs -------------------------------------------------------------------------------- /Google.Protobuf/InvalidProtocolBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/InvalidProtocolBufferException.cs -------------------------------------------------------------------------------- /Google.Protobuf/JsonFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/JsonFormatter.cs -------------------------------------------------------------------------------- /Google.Protobuf/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/JsonParser.cs -------------------------------------------------------------------------------- /Google.Protobuf/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/JsonToken.cs -------------------------------------------------------------------------------- /Google.Protobuf/JsonTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/JsonTokenizer.cs -------------------------------------------------------------------------------- /Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /Google.Protobuf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/CustomOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/CustomOptions.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/Descriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/DescriptorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/DescriptorBase.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/DescriptorPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/DescriptorPool.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/DescriptorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/DescriptorUtil.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/DescriptorValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/DescriptorValidationException.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/EnumDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/EnumDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/EnumValueDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/EnumValueDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/FieldAccessorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/FieldAccessorBase.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/FieldDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/FieldDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/FieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/FieldType.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/FileDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/FileDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/IDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/IDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/IFieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/IFieldAccessor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/MapFieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/MapFieldAccessor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/MessageDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/MessageDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/MethodDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/MethodDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/OneofAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/OneofAccessor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/OneofDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/OneofDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/OriginalNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/OriginalNameAttribute.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/PackageDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/PackageDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/PartialClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/PartialClasses.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/ReflectionUtil.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/RepeatedFieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/ServiceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/ServiceDescriptor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/SingleFieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/SingleFieldAccessor.cs -------------------------------------------------------------------------------- /Google.Protobuf/Reflection/TypeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/Reflection/TypeRegistry.cs -------------------------------------------------------------------------------- /Google.Protobuf/UnknownField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/UnknownField.cs -------------------------------------------------------------------------------- /Google.Protobuf/UnknownFieldSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/UnknownFieldSet.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Any.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/AnyPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/AnyPartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Api.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Duration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Duration.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/DurationPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/DurationPartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Empty.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/FieldMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/FieldMask.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/SourceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/SourceContext.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Struct.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/TimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/TimeExtensions.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Timestamp.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/TimestampPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/TimestampPartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Type.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/ValuePartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/ValuePartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/Wrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/Wrappers.cs -------------------------------------------------------------------------------- /Google.Protobuf/WellKnownTypes/WrappersPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WellKnownTypes/WrappersPartial.cs -------------------------------------------------------------------------------- /Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /Output/net35/Generator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Output/net35/Generator.exe -------------------------------------------------------------------------------- /Output/net35/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Output/net35/Google.Protobuf.dll -------------------------------------------------------------------------------- /Output/net35/Google.Protobuf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Output/net35/Google.Protobuf.xml -------------------------------------------------------------------------------- /Output/net35/ProtocolGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Output/net35/ProtocolGenerator.exe -------------------------------------------------------------------------------- /Output/net35/google_protoc/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/Output/net35/google_protoc/protoc.exe -------------------------------------------------------------------------------- /ProtobufHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtobufHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProtobufHelper/ProtobufHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtobufHelper/ProtobufHelper.cs -------------------------------------------------------------------------------- /ProtobufHelper/ProtobufHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtobufHelper/ProtobufHelper.csproj -------------------------------------------------------------------------------- /ProtocolBuilder/IdGenerator/Id.code: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ProtocolBuilder/IdGenerator/Id.proto: -------------------------------------------------------------------------------- 1 | 'syntax = "proto3" 2 | 3 | -------------------------------------------------------------------------------- /ProtocolBuilder/ProtocolBuilder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolBuilder/ProtocolBuilder.vcxproj -------------------------------------------------------------------------------- /ProtocolBuilder/ProtocolBuilder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolBuilder/ProtocolBuilder.vcxproj.filters -------------------------------------------------------------------------------- /ProtocolBuilder/Server/ServerRegister.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolBuilder/Server/ServerRegister.code -------------------------------------------------------------------------------- /ProtocolBuilder/Server/ServerRegister.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolBuilder/Server/ServerRegister.proto -------------------------------------------------------------------------------- /ProtocolGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator.sln -------------------------------------------------------------------------------- /ProtocolGenerator/Core/AbstractFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/AbstractFileModel.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/CSharp/CSharpClass_Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/CSharp/CSharpClass_Id.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/CSharp/CSharpClass_IdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/CSharp/CSharpClass_IdGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/CSharp/CSharpClass_Proto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/CSharp/CSharpClass_Proto.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/CSharp/CSharpCodeGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/CSharp/CSharpCodeGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/CSharp/CSharpGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/CSharp/CSharpGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Data/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Data/Data.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Data/DataManager.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Data/DataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Data/DataParser.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/EnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/EnumType.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/GeneraterCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/GeneraterCache.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/GeneraterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/GeneraterManager.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/ICodeGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/ICodeGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/IGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/IGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Java/JavaClass_Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Java/JavaClass_Id.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Java/JavaClass_IdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Java/JavaClass_IdGenerator.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Java/JavaClass_Proto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Java/JavaClass_Proto.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Java/JavaCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Java/JavaCodeGenerator.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Java/JavaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Java/JavaGenerator.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Lua/LuaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Lua/LuaGenerator.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/Lua/Lua_Proto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/Lua/Lua_Proto.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/ProtoBuf/ProtoFileGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/ProtoBuf/ProtoFileGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Core/ProtoBuf/ProtoGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Core/ProtoBuf/ProtoGenerater.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Program.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /ProtocolGenerator/ProtocolGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/ProtocolGenerator.csproj -------------------------------------------------------------------------------- /ProtocolGenerator/Utils/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Utils/FileUtil.cs -------------------------------------------------------------------------------- /ProtocolGenerator/Utils/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolGenerator/Utils/StringUtil.cs -------------------------------------------------------------------------------- /ProtocolLib/IdGenerator/Id.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolLib/IdGenerator/Id.cs -------------------------------------------------------------------------------- /ProtocolLib/ProtocolLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolLib/ProtocolLib.csproj -------------------------------------------------------------------------------- /ProtocolLib/Server/Register/ServerRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolLib/Server/Register/ServerRegister.cs -------------------------------------------------------------------------------- /ProtocolLib/Server/Register/ServerRegisterIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/ProtocolLib/Server/Register/ServerRegisterIdGenerator.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/README.md -------------------------------------------------------------------------------- /UnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/UnitTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTest/UnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/UnitTest/UnitTest.cs -------------------------------------------------------------------------------- /UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /UnitTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/UnitTest/packages.config -------------------------------------------------------------------------------- /keys/Google.Protobuf.public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/keys/Google.Protobuf.public.snk -------------------------------------------------------------------------------- /keys/Google.Protobuf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/keys/Google.Protobuf.snk -------------------------------------------------------------------------------- /keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boil-rendu/ProtocolGenerator/HEAD/keys/README.md --------------------------------------------------------------------------------