Stef Heyenrath
Stef Heyenrath
@ArcaneTSGK I was thinking, are there any other predefined types in google? And what should actually be the behavior of WireMock.Net if a google.protobuf.Empty is a return value? Is this...
Currently I only have an easy way to support: - google.protobuf.Empty - google.protobuf.Duration - google.protobuf.Timestamp
https://github.com/StefH/ProtoBufJsonConverter/pull/18
@ArcaneTSGK If you have time, you can use this preview version: 1.5.62-ci-19066
@ArcaneTSGK Can you please test preview 1.5.62-ci-19067 , this version supports: - google.protobuf.Empty - google.protobuf.Duration - google.protobuf.Timestamp - google/protobuf/wrappers - google/protobuf/any - google/protobuf/struct - Enum - `oneof`
@ArcaneTSGK Did you have some time to check?
@ArcaneTSGK Did you have some time to check?
Preview versions are defined on MyGet. See https://github.com/WireMock-Net/WireMock.Net/wiki/MyGet-preview-versions But it could be that that specific version is automatically deleted because only x versions are kept on MyGet. I will take...
@ArcaneTSGK Preview version on MyGet for this fix should be : `1.6.1-ci-19109`
Strange, I did add a unit test https://github.com/WireMock-Net/WireMock.Net/blob/bug/1144-protobuf/test/WireMock.Net.Tests/Grpc/WireMockServerTests.Grpc.cs#L104 proto ``` c# private const string ProtoDefinitionWithWellKnownTypes = @" syntax = ""proto3""; import ""google/protobuf/empty.proto""; import ""google/protobuf/timestamp.proto""; import ""google/protobuf/duration.proto""; service Greeter { rpc...