WebApiContrib.Formatting.ProtoBuf icon indicating copy to clipboard operation
WebApiContrib.Formatting.ProtoBuf copied to clipboard

Web API formatter based on ProtoBuf

Results 8 WebApiContrib.Formatting.ProtoBuf issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.4 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

HttpConfiguration.Formatters.Insert(0, new ProtoBufFormatter()); (OR) HttpConfiguration.Formatters.Add(new ProtoBufFormatter()); Exception: Attempted to access an element as a type incompatible with the array. .NET Frame work: 4.5 WebApi Package: Microsoft.Owin - 3.0.1, System.Net.Http.Formatting- 5.2.3,...

I has update the WebApiConfig.cs ,add the config.Formatters.Add(new ProtoBufFormatter()) but the client received content is null. In the controller it like this ` public Order Get(String id) { var itemList...

I am getting this issue {"Could not load file or assembly 'protobuf-net, Version=2.0.0.480, Culture=neutral, PublicKeyToken=257b51d87d2e4d67' or one of its dependencies. The located assembly's manifest definition does not match the assembly...

should CanReadTypeCore function change as follow: ``` private static bool CanReadTypeCore(Type type) { bool isCan = type.GetCustomAttributes(typeof(ProtoContractAttribute)).Any(); if (!isCan && typeof(IEnumerable).IsAssignableFrom(type)) { var temp = type.GetGenericArguments().FirstOrDefault(); isCan = temp.GetCustomAttributes(typeof(ProtoContractAttribute)).Any(); }...

Are there any plans to support ASP.NET Core 5.0? I would be willing to help out and create a pull request for this. Cheers, Tony

Hi, I installed latest version 0.9.5.0 and I receive: System.TypeInitializationException : The type initializer for 'WebApiContrib.Formatting.ProtoBufFormatter' threw an exception. ----> System.IO.FileLoadException : Could not load file or assembly 'protobuf-net, Version=2.0.0.480,...