Jon Skeet
Jon Skeet
> My opinion hasn't changed. In that case, I'd suggest closing this PR and adding a note to #6218. I wouldn't close that issue though - I think it's worth...
Not yet. It looks like there are currently some issues debugging into nuget packages. I haven't had time to get to the bottom of it yet, but we may end...
(I'm implementing this now.)
To diagnose this, we should try to work out first whether it's an Angular9 problem or a C# protobuf problem - I *suspect* it's the former. If you can provide...
I'm going to close this as it's been nearly 3 months with no further information (and over 2 years since being raised).
If you know the only dependency you need is Timestamp, that's fairly easy: ```csharp var timestampFileDescriptor = TimestampReflection.Descriptor.ToProto().ToByteString(); var descriptors = FileDescriptor.BuildFromByteStrings( new[] { timestampFileDescriptor, response.FileDescriptorResponse.FileDescriptorProto }); ``` If there...
I'd expect 7000 files to be a problem for IDEs as well. The number of source files shouldn't be relevant at execution time at all. Given that this request is...
As now support viewing a `ByteString` as a `ReadOnlyMemory` (via the `Memory` property) or `ReadOnlySpan` (via the `Span` property) both of which support efficient slicing. One scenario that *doesn't* help...
> We could fairly easily add an AsStream method to create a read-only MemoryStream though Urgh - no we can't, as MemoryStream doesn't have any overloads accepting anything other than...
The .NET library has support for a few workflows out of the box. @chrisdunelm knows more than I do; docs are at https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth. We recently released an ASP.NET Core MVC...