How I got started with machine learning using ML.NET
first tweet in the morning Lets check Jerome https://www.youtube.com/results?search_query=ML.NET Downloaded the visual studio extension https://dotnet.microsoft.com/apps/machinelearning-ai/ml-dotnet/model-builder?WT.mc_id=ondotnet-c9-cxa...
How to delete all temporary files from (bin,obj,packages) your solution folder
Sometimes you want to send a zip with your visual studio solution or project, but after you archive your files you realize that the file size is huge, well worry no more you can use the following script (a .bat file) to clear all the temporary files in your visual...
Replacing WCF with AspNetCore Rest API as transport layer for XPO
I have been using XPO from DevExpress since day one. For me is the best O.R.M in the dot net world, so when I got the news that XPO was going to be free of charge I was really happy because that means I can use it in every project without adding cost for my customers....
How to fix Error MSB4044 The “FilterAssemblies” task was not given a value for the required parameter “DesignTimeBuild”
If you updated your visual studio to version 16.2.0 and you are using MSBuildSdkExtras your project won't compile. so to fix this problem (this is a temporary fix). You need to add the following lines to your csproj <PropertyGroup Label="Android DesignTimeBuild...
How to automatically show a read me file after installing a NuGet
There are times when you have been working on your new exciting project and it looks so good that you just want to release it as soon as possible so the world can be blessed with your new NuGet package but wait your new library is a complex library and require special...
How to exclude package dependencies in a NuGet package
Sometimes during the development stage, you need to add package references to your project that are only needed either during the development or compilation stage but they are not actually required by the emitted assembly. So how do we avoid to flood the end project...