-
The Getting started with Xamarin and matters Virtual
The main landing that I can’t ever seem to remember to start with is actually here: Installing and Setting Up Xamarin.Android – Xamarin Installing and Setting Up Xamarin.Android – Xamarin How to install and configure Xamarin.Android to work with Visual Studio. Source: docs.microsoft.com/en-us/xamarin/android/get-started/installation/ The next important part is when you are setting up HAXM (for intel based chips) From a cmd window. sc query intelhaxm (and if it is not already installed go here HAXM Release on GitHub sc stop intelhaxm – to stop the service sc start intelhaxm – to start the service You can also use Hyper-V (sometimes I have issue with this method because it likes to…
-
Port Desk Top UI App
Not really ready for prime time , but here’s an article stepping through the how-to and the workaround for the fact that Core has yet to add the visual designer for, ya you guessed the actual Windows Form- that seems to be a rather glaring miss if we are talking about porting and doing traditional windows UI forms development going forward. .NET Blog | How to port desktop applications to .NET Core 3.0 In this post, I will describe how to port a desktop application from .NET Framework to .NET Core. I picked a WinForms application as an example. Steps for WPF application are similar and I?ll describe what needs…
-
Using Kestrel for ASP Core Apps
As I was looking about with some of the Core 2.2 notes, I came across some interesting notes on how to tweak about with Kestrel settings…. I’m not sure I like putting Kestrel options up the in the Main Program builder. I tend to prefer these to collect in the startup class, but I get point of why Kestrel needs to be handled close to the Builder (it is after all the html service handling web calls). Shall we begin… So up in program.cs we do our normal Web Host Builder: public class Program { public static void Main(string[] args) { var host = CreateWebHostBuilder(args).Build(); MigrateDatabase(host); host.Run(); //CreateWebHostBuilder(args).Build().Run(); } private…
-
Good things coming to EF Core 2.2
I noticed some interesting matters coming to the EF Core. Having access to additional Databases, what’s not to like about that? From the check it department… Announcing Entity Framework Core 2.2 Preview 2 and the preview of the Cosmos DB provider and spatial extensions for EF Core A first-hand look from the .NET engineering teams blogs.msdn.microsoft.com
-
From the Dot Net Config some Good Web Sites to check out.
So in the travels about with the .Net Conf this week check out some site: Discover .NET Awesome .NET open source & community resources discoverdot.net And… Showcase of projects built with .net technology – BuiltWithDot.Net BuiltWithDot.Net is a community showcase of projects built with .net framework, .net core, xamarin, mono, mono game, unity, or godot. Anyone can submit. And… .NET Foundation dotnetfoundation.org
-
Did you say Free Pipelines?
Who doesn’t like FREE… I may need to have a second like at Azure Pipelines…. on YES! Announcing Azure Pipelines with unlimited CI/CD minutes for open source With the introduction of Azure DevOps today, we?re offering developers a new CI/CD service called Azure Pipelines that enables you to continuously build, test, and deploy to any platform or cloud. .microsoft.com
-
Blazor and EF Core to Nowhere land.
In the long decent into “Experimental” frameworks- this one being Blazor, I’ve been finding some challenges with getting Blazor to work with the latest EF Core. There’s a few examples of Blazor being used with EF Core (i.e. the CRUD example that’s floating around the inter-Tubes), but nothing that seems to work with the latest Blazor Lang template in the latest VS release. One can go to a lower EF Core version, well mostly… I’ve yet to get my Blazor Hosted Core test app to compile…. let alone the DB-Context to Scaffold… it just spews errors no matter which direction I go in… Oh Bother…. I have to remember that…



