Daniel Hughes

Results 29 comments of Daniel Hughes

I need some code to always run even if the test fails, This is because there is very important cleanup to do. If I follow the advice here and catch...

I tried to install .net 6 following the instructions on https://dotnet.microsoft.com/download/dotnet/thank-you/sdk-6.0.100-preview.3-linux-x64-binaries However it didn't work, the version is still .net 5 instead of .net 6 ``` daniel@WS4320:~/Downloads$ mkdir -p $HOME/dotnet...

For some context, I'm a c# developer (no experience building native libs) I've created a c# wrapper for opus for my app, which I have used and tested on ubuntu,...

For example I was able to build openssl for android using the following instructions https://proandroiddev.com/tutorial-compile-openssl-to-1-1-1-for-android-application-87137968fee Something like this would be great.

I haven't built anything to do this, but it is definitely something I would like to look into. One issue that we might run into is that JsonSrcGen doesn't require...

For my usecase with Serilog I need to create a new logger from an existing one. ``` ILogger logger = _generalLogger.ForContext(typeof(parent)); ``` So would look something like: ``` [Factory(Scope.InstancePerDependency)] ILogger...

I just had another one. Error while resolving dependencies for 'Pttox.Forms.Views.AppShell': We have no source for instance of type 'UIKit.UIViewController' This is particularly confusing, as I only have a handful...

Is there anyway for me to get at this diagnostic info? It doesn't seem to be in the output info under Build. I also tried changing the 'MSBuild project build...

I think that UIKit.UIViewController is used internally by Xamarin.Forms to render a page on iOS. In our app AppShell is responsible for getting and displaying the Xamarin.Forms pages. So it...

I finally managed to track down the UIViewController dependency issue (by removing dependencies until it started working) We use a barcode scanner library called ZXing.Mobile. It has an interface IMobileBarcodeScanner...