Andrew Herrick
Andrew Herrick
Would love to be able to support Server side for debugging and client side for Production without having to have 2 code paths. Additionally with this model how do debug...
Trying to add a simple Open API integration: ``` var builder = WebApplication.CreateBuilder(args); builder.Services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "WebApi", Version = "v1" }); }); var app...
Hello, I don't want to request access to my 'user_friends' list. I just simply want basic info. How can I remove this when request permission?
Would there be anyway to pull the JSON translation dynamically from a DB instead of having it pre baked in the assembly on the file system?
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/collectionview
I have a basic Style setup like the following. I want to bind to Header property. When I run the App, this is what I see for the ToolTip: `System.Windows.DataTemplate`...
Is it possible to target the extension for Arm64? https://devblogs.microsoft.com/visualstudio/now-introducing-arm64-support-for-vs-extensions/
### Description Can't build any MAUI apps anymore. On latest VS2022 Preview. ``` C:\code\repos\app>dotnet workload restore --source https://api.nuget.org/v3/index.json Installing workloads: android ios maccatalyst Installing pack Microsoft.Android.Sdk.Windows version 34.0.64... Workload installation...
Awesome stuff! Any idea how to work with Tabs? Tap on a given Tab in Forms?
I have a Xamarin Forms app using sqlite-net. In iOS, I sometimes see the following exceptions which are crashing the App. ``` DB.InsertOrReplace[T] (T item) SQLite.SQLiteException: Busy ``` ``` DB.ResetTable[T]...