Moving to Cake (C# Make)
I finally invested time to migrate our build from a heteroclite mixture of MSBuild, TeamCity build steps and whatever to something that really delight me: Cake (C# Make).
View ArticleUpload files to DropBox from PowerShell
When I migrated our build to Cake (C# Make) we had one requirement which was to upload some of the build output’s artifacts to DropBox at the end of the build.
View ArticleHosting nugets in TeamCity
In the past in my team, we were storing the Telerik assemblies into our SVN repository then in Git! I wasn’t happy about that for a really long time. Each releases our repository was growing much more...
View ArticleEase Github Pull Request code review
Even if online Github Pull Request is a nice and effective tool, in some situation you need to open your solution in Visual Studio to verify something.
View ArticleDocker for Windows Beta review
I have been playing with all Docker tools for quite some time now! Started with the command line and all its commands like docker start, stop, ps, etc… Then I tried Kitematic and even compiled it from...
View ArticleASP.NET Core RC2, Docker and HipChat Connect add-on
This weekend ASP.NET Core RC2 was starting to show up! And it finally was released today. Get it fresh from here. We had here a long three days weekend with quite awful gray clouds and cold weather...
View ArticleDeploying Docker containers running ASP.NET Core RC2 to Microsoft Azure Cloud
Following my previous post on ASP.NET Core RC2, Docker and HipChat Connect add-on I wanted to learn the next step which is to deploy my Docker container on the Microsoft Azure Cloud!
View ArticleFree HTTPS certificates for Docker containers running ASP.NET Core RC2 on...
Following my previous posts on ASP.NET Core RC2, Docker and HipChat Connect add-on and Deploying Docker containers running ASP.NET Core RC2 to Microsoft Azure Cloud I needed, as promised in the last...
View ArticleBuild, ship and run ASP.NET Core on Microsoft Azure using Docker Cloud
In the last posts, we looked at the code to build a HipChat Connect add-on with ASP.NET Core, run the solution in a Docker container and secure the access to the application with a valid HTTPS...
View Article.NET Core console app running on Raspberry Pi
Now that there is a distribution of .NET Core on a Linux distro running on my Raspberry Pi 3, I had to try it. In this post, I will explain all the steps I had to execute to be able to run my first...
View ArticleASP.NET Core MVC app running on Raspberry Pi
After running a first console app on my Raspberry Pi 3, I had to try ASP.NET Core and API. Two weeks ago when I posted “.NET Core console app running on Raspberry Pi”, I could make API working, but I...
View ArticleDebugging into ASP.NET Core 2.0 source code
I am just back from 2.5 months unpaid leave which I used to spend time with my family. So, I almost did not spend time with software development. One exception is that I wanted to be able to configure...
View ArticleAutomating my development machine installation
Since Microsoft went to Windows as a service, so since Windows 10, I fully re-install my development machine, a Surface Book, with each main release of Windows. As I hate to lose time, I searched a...
View Article.NET Core Community online Hackathon
On Saturday, June 2, 2018, I had the chance to participate in the .NET Core Community online Hackathon. As I got up really early this Saturday morning, I took the opportunity to participate. My goal...
View ArticleDynamically compile and run code using .NET Core 3.0
Let’ see in this blog post the new possibility offered by .NET Core 3.0 preview 2 to load and unload assemblies at run time using AssemblyLoadContext.
View ArticleAzure DevOps for Visual Studio Extensions
As you might have guessed reading some of my older posts, I like to automate things which I believe a computer should do in place of humans.
View ArticleWPF and IOC on .NET Core 3.0
At work, we are planning to migrate our WPF application from .NET Framework 4.7 to .NET Core 3.0. The main reason for doing so is that it was always a big pain to organize the updates of the .NET...
View ArticleWPF and .NET Generic Host with .NET Core 3.0
I like very much the idea of a .NET Generic Host in the MSDN documentation: An object that encapsulates an app’s resources, such as: Dependency injection (DI) Logging Configuration IHostedService...
View ArticlegRPC and C# 8 Async stream
gRPC and its idea to describe an API in a standardized file, which can generate both client and server code to interact in different languages is a compelling idea.In this post, I would like to have a...
View ArticlegRPC and C# 8 Async stream cancellation
In the previous post “gRPC and C# 8 Async stream“, we looked at how gRPC server stream and C# 8 Async stream work great together. In this post, we are looking at the way we can, from the client, stop...
View Article