-
Claude in Azure with .NET – Anthropic Claude + Microsoft Extensions.AI (MEAI) 💥
Hiđź‘‹Great news for .NET developers: Anthropic’s Claude models (Claude Sonnet 4.5, Haiku 4.5, Opus 4.1) are now available in Microsoft Foundry (public preview anthropic.com). This makes Azure the only cloud platform providing access to both OpenAI’s GPT and Anthropic’s Claude frontier models side-by-side (azure.microsoft.com). In practical terms, you can deploy a Claude model to your… — read more
-
#MLNET – Fix the error [System. InvalidOperationException, Entry Point ‘ Not found] when you train a pipeline
Hi! Today I’m going to leave this POST as a memory backup for me because I always forget to make this configuration in ML.Net projects and I always find the following error: System.InvalidOperationException  HResult=0x80131509  Message=Entry point ‘<some external assembly> not found  Source=Microsoft.ML.Data Where [External Assembly] can be For example LightGBM  Message=Entry… — read more
-
#MLNET – SoluciĂłn para el error [System.InvalidOperationException, Entry point ‘ not found] al momento de entrenar un Pipeline
Buenas! Hoy voy a dejar este post como un ayuda memoria de algo que me olvido siempre en los proyectos de ML.Net y siempre me encuentro con el siguiente error. System.InvalidOperationException  HResult=0x80131509  Message=Entry point ‘<some external assembly> not found  Source=Microsoft.ML.Data Donde el [External Assembly] puede ser por ejemplo LightGBM  Message=Entry point… — read more
-
#MLNet – Adding NuGet Packages in Preview mode from MyGet, ie: Microsoft.ML-0.6.0 Version
Hi! A few days ago I wrote about the new Machine Learning.Net version 0,5. Yesterday when .NetConf started, the release was made official with the following post from Cesar de la Torre Announcing ML.NET 0.5 Now, a detail that is a little Deep in the documentation is the way to access packages in preview mode… — read more
-
#MLNet – Agregando paquetes en modo Preview desde MyGet, por ejemplo Microsoft.ML -Version 0.6.0
Buenas! Hace unos dĂas hable de la nueva version 0.5 de Machine Learning.Net. Ayer cuando comenzĂł .NetConf, se hizo oficial el lanzamiento de esta version con el siguiente post de Cesar de la Torre Announcing ML.NET 0.5 Ahora bien, un detalle que está un poco Deep en la documentaciĂłn es la forma de acceder a… — read more
-
#Tutorial – How to build an #Amazon #AlexaSkill using Visual Studio 2017, C# and #Azure (3 on N)
Hi ! In the previous post describe the steps necessary to create a WebSite that interacts with an Alexa Skill. The next step is to publish the website in Azure. There are many tutorials on how to do this, so I will not write the necessary steps (see references) In my case I published my… — read more
-
#Tutorial – Como crear un #Amazon #AlexaSkill con Visual Studio 2017, C# y #Azure (3 de N)
Buenas! En el post anterior describir los pasos necesarios para crear un WebSite que interactĂşe con un Alexa Skill. El siguiente paso es publicar el mismo en Azure.  Hay muchos tutoriales sobre como hacer esto, asĂ que no escribirĂ© los pasos necesarios (ver referencias) En mi caso he publicado el site en la siguiente url… — read more
-
#Tutorial – How to build an #Amazon #AlexaSkill using Visual Studio 2017, C# and #Azure (2 on N)
Hi! Well, in today’s post we will see how to create an Azure API App, which we will then use as an Alexa Skill backend that we created in the previous post. Tommy describes in an excellent way how to create a website and prepare him to work with Alexa Skill in this post (link).… — read more
-
#Tutorial – Como crear un #Amazon #AlexaSkill con Visual Studio 2017, C# y #Azure (2 de N)
Buenas! Pues bien, en el post de hoy veremos cĂłmo crear un Azure API App, que luego utilizaremos como backend del Alexa Skill que hemos creado en el post anterior. Tommy describe de una forma excelente como crear un website y prepararlo para trabajar con Alexa Skill en este post (link). Este proyecto utiliza el… — read more
-
#Bots – Error when you update the #NuGet package for System.IdentityModel.Tokens.Jwt on your #MicrosoftBot Application
Hello! For a few days, I was lucky and go back to the great world of Microsoft Bot. In this one, my main task was to update one Bot I’ve created some time ago. The update process is fairly simple. Gisela has written a post where he explains the biggest changes, and otherwise you can always browse ans learn… — read more
-
#Windows10 – Device Portal Wrapper available via NuGet and source code in #GitHub
Hello! Some time ago I wrote about the Device Portal capabilities for Hololens. In my case, there are some key actions like remote monitoring, remote apps deploy and to device restart, which are very useful in my developer day to day. Now is time to say thanks to the Windows Developer team. This is because, the “Windows Device Portal Wrapper” project… — read more
-
#Windows10 – Device Portal Wrapper en #NuGet y #GitHub
Hola ! Hace algĂşn tiempo escribĂ sobre las capacidades de Device Portal, en especial para Hololens. En mi caso, acciones como el monitoring remoto, la capacidad de desplegar apps y poder reinicar un device, son muy Ăştiles en el dĂa a dĂa como developer. Hoy me entero gracias al blog de Windows Developer, que el… — read more
-
#AZURE – Nuevo componente PCL para trabajar con #AzureIoTHub en #NuGet
Hola! Hoy es dĂa de Build, asĂ que solo un post rápido y Ăştil.El equipo de Azure IoT Hub ha liberado un paquete NuGet con una implementaciĂłn PCL que soporta Android y iOS (Xamarin), Windows 10 (UWP) y Windows Phone (WinRT) de Azure IoT Hub Client. Asi que, ahora es aĂşn más fácil integrar nuestras apps con el entorno IoT de Azure. Saludos… — read more
-
#AZURE – New PCL for #AzureIoTHub on #NuGet
Hi! Quick one for today. The Azure IoT Hub team has just released a NuGet package with a PCL implementation which supports Android and iOS (Xamarin), Windows 10 (UWP) and Windows Phone (WinRT) for the Azure IoT Hub Client. So, now is even more easy to add some IoT features into our apps. Greetings @… — read more
-
#VS2015 – Enviar tweets desde una app #UWP #Windows10 con #TweetMoaSharp
Hola ! Hace un tiempo escribĂ un post donde comentĂ© sobre un paquete para trabajar con Twitter desde una Windows 10 Universal App. En ese post comentĂ© tambiĂ©n que era una pena que la excelente TweetSharp de Daniel Crenna, no soporte Windows Universal Apps. Ayer actualizando una app con problemas, me encuentro con TweetMoaSharp. Que es… — read more
-
#VS2015 – Observer Pattern the easy way with #NuGet and #CSharp 6 features
Hola! These days I’m dealing with a Winforms app who needs tons of love (Thanks Tori!). I’m slowly addidng some stuff like IoC, and I get to a point where I need to upgrade the current implementation of Observer for a better one. Lucky for us, in Net Framework 4.0 the MS team added the cool IObserver<T> interface, however there is some code… — read more
-
[#VS2015] Some #NuGet new features in Visual Studio 2015
Hello! Right now work with Visual Studio 2015 is a pleasure. Even if the current version “less than a Beta”, it is rather stable and you can use it to work fine. One of the things that I like most in the new IDE, is the new NuGet window which is not modal. For sure, in the past you get… — read more
-
[#VS2015] Algunas novedades de #NuGet en Visual Studio 2015
Hola! La verdad es que trabajar con Visual Studio 2015 es un placer. Si bien está en “menos que beta”, es bastante estable para poder trabajar. Una de las cosas que más me gusta del nuevo IDE es que la ventana de NuGet no es modal. Seguramente en algĂşn momento has necesitado tener abierto la configuraciĂłn… — read more
-
[#VS2013] NuGet Error: Failed to initialize the PowerShell host. If your PowerShell execution policy setting is set to AllSigned, open the Package Manager Console to initialize the host first.
Hello! Today I’ll go with a and easy-to-fix Visual Studio error. I was fixing some old projects and I find that suddenly NuGet decided to stop working. The error message was pretty clear ‘ EntityFramework 6.1. 1′ already installed. Adding ‘ EntityFramework 6.1. 1′ to BigAndCoolProject. Successfully added ‘ EntityFramework 6.1. 1′ to BigAndCoolProject. Executing script file ‘… \src\packages\EntityFramework.6.1.1\tools\install.ps1′. Failed to… — read more