Jakub Syty
Jakub Syty
KSP is significantly faster then kapt, but at this point separate module for kotlin would be equally awesome
Any chance on moving it up? Component is unusable for now
https://michaelscodingspot.com/the-battle-of-c-to-json-serializers-in-net-core-3/
I have same issue, but can't downgrade sprockets (i'm using rails 5 which lowest sprockets expectation is 3.0). Any ideas how to solve this?
Dagger will be supported in Android Studio 4.1 (in RC now) and Hilt will be supported in Android Studio 4.2 (Canary). But as i understand - this support will be...
I agree that `AddDatabase` is confusing in this sense. I just wasted too much time getting this information. Renaming it would be nice, but i think more important would be...
> Entity Framework Core actually handles this specifically in its database creation routines and reconnects to the database with a modified connection string (by stripping off the database name). There's...
Similar issue ```csharp [Mapper] public static partial class FilePermissionMapper { [MapperRequiredMapping(RequiredMappingStrategy.Target)] public static partial FilePermissionResponse ToProtoResponse(this FilePermission filePermission); [MapperRequiredMapping(RequiredMappingStrategy.Source)] public static partial FilePermission FromProtoRequest(AddFilePermissionRequest addFilePermissionRequest); } ``` dotnet format --verify-no-changes...
It is being used: ```csharp public static partial class FilePermissionMapper { [global::System.CodeDom.Compiler.GeneratedCode("Riok.Mapperly", "4.1.0.0")] public static partial global::Files.FilePermissionResponse ToProtoResponse(this global::Files.Data.Entities.FilePermission filePermission) { var target = new global::Files.FilePermissionResponse(); target.Id = (global::Common.Id)filePermission.Id; target.FileId...
Another workaround for now is to add this to the .editorconfig ``` [*Mapper.cs] dotnet_diagnostic.ide0060.severity = none ```