Skip to content

Sponsor: Do you build complex software systems? See how NServiceBus makes it easier to design, build, and manage software systems that use message queues to achieve loose coupling. Get started for free.

Learn more about Software Architecture & Design.
Join thousands of developers getting weekly updates to increase your understanding of software architecture and design concepts.


Follow @CodeOpinion

Practical ASP.NET Core SignalR: Basics

In this section, I’m going to create a simple ASP.NET Core application that will contain a SignalR Hub, Razor Page, and a JavaScript Client. This blog post is apart of a course that is a complete step-by-setup guide on how to build real-time web applications using ASP.NET Core SignalR. By the end of this course, you’ll be able to build real-world, scalable, production applications using the tools and techniques provided in this course. If you haven’t already, check out the prior sections of this course. Course Overview ASP.NET Core SignalR Overview Server Hubs https://www.youtube.com/watch?v=sdsCzyTtp6UVideo can’t be loaded because JavaScript is disabled:… Read More »Practical ASP.NET Core SignalR: Basics

Roundup #28: MinVer, API Discovery, Dependabot, Repository Pattern, Typescript

Here are the things that caught my eye this week.  I’d love to hear what you found most interesting this week.  Let me know in the comments or on Twitter.   MinVer A minimalistic .NET package for versioning .NET SDK-style projects using Git tags. When you want to release a version of your software, whether it’s a pre-release, RTM, patch, or anything else, simply create a tag with a name which is a valid SemVer 2.0 version and build your projects. MinVer will apply the version to the assemblies and packages. (If you like to prefix your tag names, see the FAQ.) Link: https://github.com/adamralph/minver   REST… Read More »Roundup #28: MinVer, API Discovery, Dependabot, Repository Pattern, Typescript

Using Date Version Numbers for Assemblies in TeamCity

In some projects, I use the AssemblyInfo Patcher build feature to modify the AssemblyInfo.cs’s version information.  Mainly I was just using a static version with the %build_number% suffixed at the end.  Something like 1.2.3.%build_number%.  However, I decided to go with a date version number of YYYY.MM.DD.%build_number% Variables The first thing that caused me an issue was there is no existing system or environment variables defined that provide you with date parts.  I figured this by adding a new build step for creating an environment variable using Service Messages. Service messages are specially constructed pieces of text that are used to pass… Read More »Using Date Version Numbers for Assemblies in TeamCity