DotNet Developer Roadmap Save

The comprehensive .NET Developer Roadmap by seniority level.

Project README

.NET Developer Roadmap 2024.

This is a step-by-step guide to becoming a .NET Engineer, with links to relevant learning resources.

If you want to learn more about .NET technologies, be sure to subscribe to my newsletter.

Disclaimer

This roadmap aims to give you an idea about the landscape. The road map will guide you if you need clarification about what to learn next rather than encouraging you to pick what is hype and trendy. It would help if you grew some understanding of why one tool would be better suited for some cases than the other and remember that hype and trendy only sometimes mean best suited for the job.

Give a Star! :star:

If you like or are using this project to learn or start your solution, please give it a star. Thanks!

Roadmap (by seniority level)

Note that by seniority level, it means:

🟣 Junior: Basic concepts

🟤 Medior: Advanced concepts

🔴 Senior: Expert concepts

Roadmap

Download PDF version.

Minimalistic version

Below you can find a bare minimum version every junior .NET developer needs to know, with learning materials included and clickable in the PDF version.

Roadmap

Download PDF version.

Table of Contents

Understanding the .NET ecosystem

Before going into specifics, you need to have a solid understanding of the .NET Ecosystem. Here are a few that you should understand:

.NET runtimes

In this section, we will look at the main .NET runtimes. We consider .NET runtime as anything that implements ECMA-335 Standard for .NET.

.NET Framework

.NET Framework is a software development framework for building and running applications on Windows. .NET Framework consists of Common Language Runtime (CLR), .NET Framework Class Library, and Application workloads (WPF, Windows Forms, and ASP.NET). CLR is part of a shared infrastructure that runs code, jit, does garbage collection (C#, VB.NET, F#), etc. The code that CLR manages is called managed code. Code is compiled into Common Intermediate Language (CIL) and stored in assemblies (with .exe or .dll extension). When an application runs, CLR takes an assembly and uses a just-in-time compiler (JIT) to transpile machine code into code that can run on specific computer architecture.

You can use it for both desktop and web development, but it is limited to Windows development, and it comes preinstalled on Windows.

.NET Core

.NET Core is one of the runtimes in the .NET Ecosystem. It was released in 2016. and it's open-sourced. It does not represent a new version of the .NET Framework and will not replace it. It is an entirely independent version, built to allow cross-platform capability for application development. .NET Core consists of an App Host (dotnet.exe) that runs CLR and Library. It has a Common language runtime (CoreCLR) and .NET Core Class Library. It supports different application workloads, such as ASP.NET Core (MVC and API), console applications, and UWP (currently).

.NET Core can run on different platforms: Windows Client, Server, IoT, Linux, Ubuntu, FreeBSD, Tizen, and Mac OSX, and can be installed side-by-side of different versions per machine or user.

The One .NET - .NET 5

.NET 5 was released in November 2020 with the goal of unifying development for desktop, Web, cloud, mobile, gaming, IoT, and AI applications. The earlier setup goal was to produce a single .NET runtime and framework, cross-platform, integrating the best features of .NET Core, .NET Framework, Xamarin, and Mono. However, due to the global health pandemic, the unification was postponed to .NET 6. .NET 5 is a shared code base for .NET Core, Mono, Xamarin, and future .NET implementations. Also, target framework names (TFMs), which express which version of .NET targeting, are updated, so we now have net5.0. This is for code that runs everywhere. It combines and replaces the netcoreapp and netstandard names and net5.0-windows that represent OS-specific flavors of .NET 5 that include net5.0 plus OS-specific bindings.

The current - .NET 8

.NET 8 is the latest runtime in the .NET Ecosystem. It is released in November 2023. and it unifies development for desktop, Web, cloud, mobile, gaming, IoT, and AI applications. .NET 8 consists of an App Host (dotnet.exe) that runs CLR and Library. It has a Common language runtime (CoreCLR) and .NET 8 Class Library. It also includes ASP.NET Core 8. .NET 8 has nearly identical platform support as .NET Core 3.1 for Windows, macOS, and Linux.

.NET 8 is a Long Term Support (LTS). Those releases are supported for three years after the initial release.

.NET 7 was a Standard Term Support release, supported for six months after a subsequent STS or LTS release.

.NET Standard

Different runtimes use different class libraries, e.g., .NET Framework uses .NET Framework class library, while .NET Core contains its class library, as well as Xamarin with its class library. In this way, it's hard to share code between different runtimes, as they use different APIs. Microsoft's solution is the .NET Standard library, released in 2016. It represents a set of (formal) specifications that say which APIs you can use and all runtimes implement it. It is the evolution of Portable Class Libraries (PCL). Specific runtimes implement specific versions of .NET Standard (implementing specific APIs). E.g., .NET Framework 4.8.1 implements .NET Standard 2.0, and .NET 7 implements .NET Standard 2.1 (link).

To learn more about the .NET Ecosystem, check this blog post.

.NET Release Schedule by Microsoft:

.NET Release schedule by Microsoft

Learning resources

1. C#

C# is a programming language developed by Microsoft. It's a language for building anything from desktop applications and games (using Unity) to cloud-based solutions and web services. With strong support for object-oriented programming and a rich library, it's designed to be easy and efficient.

The latest version is C# 12, released in November 2023.

Check the full C# timeline:

C# Timeline

You need to understand different C# language features, such as:

  • Object-oriented programming (classes, objects, interfaces, inheritance, polymorphism)
  • Variables, data types, and operators
  • Reference and value types
  • Control flow (conditionals, loops)
  • Generics
  • Exception handling
  • Delegates and events
  • Assemblies
  • Collections
  • LINQ (Language Integrated Query)
  • Async and await for asynchronous programming

C# Mind map

But also .NET libraries and APIs for:

  • File I/O and serialization
  • Collections and data structures
  • Networking
  • Multithreading and task parallelism
  • Security and cryptography

Resources:

2. General Development Skills

Mastering design patterns, clean code, and version control like Git enables you to write efficient, maintainable code that works and thrives in a team environment. It's the difference between being a coder and a skilled software engineer.

Here, you need to know different principles, such as:

SOLID Principles:

  • Single Responsibility Principle (SRP)
  • Open/Closed Principle (OCP)
  • Liskov Substitution Principle (LSP)
  • Interface Segregation Principle (ISP)
  • Dependency Inversion Principle (DIP)

But also:

  • DRY (Don't Repeat Yourself)
  • KISS (Keep It Simple, Stupid)
  • YAGNI (You Ain't Gonna Need It)
  • Law of Demeter (LoD) or Principle of least knowledge
  • Composition over Inheritance
  • The principle of least astonishment
  • Software architecture styles and patterns (MVC, MVP)

Resources:

3. ASP.NET Core

It is a cross-platform, high-performance framework developed by Microsoft for building web apps, APIs, and microservices. You can also run your apps on Windows, Linux, or macOS. It's engineered for flexibility and scalability with features like built-in dependency injection and a robust configuration system.

Here, you also need to know web development fundamentals, such as:

  • HTML, CSS, and JavaScript for front-end development
  • HTTP protocols, DNS, request/response model, and RESTful APIs
  • Routing, middleware, authentication, and authorization

Resources:

4. Client-Side .NET

If you want to build UIs in .NET, you will need these frameworks. Razor is a template engine for creating dynamic HTML, while Blazor takes it up a notch, letting you build interactive web UIs using C# instead of JavaScript. MAUI is a Xamarin successor made for building cross-platform mobile apps. Windows Presentation Foundation (WPF) is a UI framework that creates desktop client applications. Uno Platform is an open source cross-platform graphical user interface that allows WinUI and Universal Windows Platform (UWP) - based code to run on iOS, macOS, Linux, Android, and WebAssembly.

Resources:

5. Databases

Good database design ensures efficient data storage and quick retrieval, making your app run smoother and scale easier. SQL, the go-to language for database interaction, gives you the power to query, update, and manage the data you've so carefully designed to store.

Here, you need to know:

  • SQL Syntax
  • Basics of Database design (normal forms, keys, relationships)
  • The Difference Between Inner, Left, Right, and Full Join
  • SQL Queries Execution Order
  • What is Query Optimizer

Resources:

6. ORM

Object-relational mapping (ORM) is like a translator between your object-oriented C# code and the relational database, eliminating the tedious task of writing SQL queries for basic CRUD operations. Using ORM frameworks like Entity Framework, you can manipulate data as objects in your code, making it more readable and maintainable. This speeds up development, minimizes errors, and lets you focus on complex business logic rather than wrestling with database syntax.

For Entity Framework, you need to know the following:

  • DbContext and DbSet for managing database connections and querying data
  • Code-First and Database-First approaches for defining data models
  • Migrations for managing database schema changes
  • Querying data using LINQ and raw SQL
  • Tracking changes and saving data

Resources:

7. Caching

Caching is like your app's personal short-term memory, storing frequently accessed data so it can be quickly retrieved without accessing your database. By reducing database load and speeding up data access, caching gives your app the competitive edge it needs to meet user demands for responsiveness and availability.

Resources:

8. Logging

Logging captures runtime information, errors, and other crucial data that can help you quickly identify and fix issues, making your application more reliable and secure. Logging frameworks like NLog or Serilog integrate seamlessly into .NET, giving you a real-time diagnostic tool indispensable for monitoring application health, troubleshooting problems, and even gathering insights for future development.

Resources:

9. Communication

In .NET we have three types of communication: Real-time communication, Synchronous, and Asynchronous communication. Real-time communication technologies, like SignalR in the .NET ecosystem, enable these functionalities by maintaining a constant connection between server and client. Synchronous communication is mainly done by using through HTTP Client, while asynchronous communication is done through different messaging and event-based frameworks and libraries. Messaging systems act as a middleman between different parts of your system, allowing them to communicate without being directly connected. Event handlers, on the other side, are used for handling events within a single application. They facilitate a publisher-subscriber model where one part of the application can raise an event that other parts can react to.

Resources:

10. Background tasks

These services run tasks in the background, freeing up your application to focus on user interactions. Whether data processing, automated emails, or periodic clean-ups, background services ensure these tasks don't slow down or interrupt the user experience.

Resources:

11. Testing

Unit tests focus on isolated pieces of your code, integration tests ensure different parts play well together, and end-to-end tests validate the entire user journey within your application. Together, they form a safety net, catching bugs early, simplifying debugging, and making your codebase robust and maintainable.

Here you need to know:

  • Test frameworks (xUnit, NUnit, MSTest)
  • Test runners and test explorers
  • Asserts and test attributes
  • Mocking libraries (NSubstitute, etc.)

Resources:

12. Observability

These tools provide real-time insights into your application's performance, user behavior, and error rates, enabling you to address issues before they escalate into full-blown problems proactively.

  • Monitoring focuses on the health and availability of services and systems, often triggering alerts for predefined conditions.

  • Telemetry collects, processes, and transmits data from systems, enabling analysis of patterns, trends, and anomalies.

Resources:

13. Containerization

Container solutions encapsulate your .NET application, libraries, and runtime into isolated containers. This enables consistency across multiple development and production environments, resolving dependency issues. With features like layered file systems, you can easily manage container images for ASP.NET, .NET Core, or other .NET services, optimizing build times and resource utilization.

Resources:

14. Cloud

Cloud providers provide a layer of APIs to abstract infrastructure and provision it based on security and billing boundaries. The cloud runs on servers in data centers, but the abstractions cleverly give the appearance of interacting with a single "platform" or large application. The ability to quickly provision, configure, and secure resources with cloud providers has been key to the tremendous success and complexity of modern DevOps.

The most popular cloud providers in the market are AWS and Azure, as well as Google Cloud.

Here, you must know how to manage users and administration, networks, virtual servers, etc.

Resources:

15. Continuous Integration & Delivery (CI/CD)

CI/CD automates the building, testing, and deployment stages into a streamlined, error-resistant pipeline. This means faster releases, bug fixes, and more time to focus on feature development.

Here you need to know how to:

  • Build and deployment tools (MSBuild, dotnet CLI)
  • Version control systems (Git, Azure DevOps)
  • CI/CD platforms (GitHub Actions, Azure Pipelines, Jenkins, TeamCity)

Resources:

16. NET Libraries

Some useful .NET libraries. Note that not all libraries will be used by everyone, it mainly depends on a project you work on.

  • MediatR - Mediator pattern implementation in .NET
  • Polly - Fault-handling library that allows expressing policies such as Retry and Circuit Breaker.
  • Fluent Validation - .NET validation library for building strongly-typed validation rules.
  • Benchmark.NET - .NET library for benchmarking.
  • Refit - Turns your REST API into a live interface.
  • YARP - Reverse proxy server.
  • Swashbuckle - Swagger tools for documenting API's built on ASP.NET Core.

Additional considerations

In addition to this, you also need to know the following:

Performance best practices

Performances play an essential role in .NET applications. Here you need to know:

Profiling and diagnostics

These tools can help you identify and debug different performance bottlenecks you have in your code. For this, you can use other tools, such as:

Performances 101

Along with tools, you should be aware of different performance best practices for .NET:

  • Caching (in-mem Memory Cache or Redis)

  • Database Optimization (optimize queries, proper indexing, connection pooling)

  • Async Programming (offload all CPU extensive or I/O bound operations to DB, file systems, ext. systems)

  • Use Entity Framework wisely (use eager loading, projections, and optimizations like compiled queries)

  • Memory management (use value types and be cautious with large object graphs. Use dispose pattern to db connections or streams. Avoid boxing/unboxing. Use StringBuilder instead of String for a large number of concatenations.)

  • HTTP Caching (use ETags, Last-Modified headers)

  • Minimize Round-Trips (reduce the number of HTTP requests and database round-trips)

  • Content Delivery Networks (CDNs) (Offload static assets (CSS, JavaScript, images) to CDNs for faster delivery to users)

  • Compression (Enable GZIP or Brotli compression for HTTP responses to reduce data transfer size)

  • Logging and Tracing (Avoid excessive logging in production. Use distributed tracing across microservices.)

  • Parallelism and Concurrency (Utilize parallelism and multithreading for CPU-bound tasks using Parallel class or Task Parallel Library (TPL))

  • Resource Optimization (Optimize images and assets for the Web to reduce load times)

  • HTTP2 over SSL (now make intelligent decisions about the page content)

  • Measure and Monitor Performance (use VS Diagnostic Tools, App Insights, or BenchmarkDotNet)

  • User Span<> instead of collections (spans can represent a contiguous section of memory; this means we can use them to operate over arrays)

Security and Cryptography

Security plays an essential role in application development. The most critical aspects of security in the .NET world are:

  • Authentication and Authorization concepts:

    • Cookies
    • ASP.NET Core Identity for user management
    • .NET OIDC middleware
    • OAuth and OpenID Connect for 3rd-party authentication
    • JWT (JSON Web Tokens) for token-based authentication
    • Role-based and claims-based authorization
  • Cryptography and Data Protection concepts:

    • Symmetric and asymmetric encryption algorithms
    • .NET Core Data Protection APIs
    • Hashing and digital signatures
    • Secure random number generation

Additional learning resources

Books

YouTube Channels

Blogs

Podcasts

Other .NET Content creators

Tools

Wrap Up

If you think the roadmap can be improved, please open a PR with any updates and submit any issues. Also, I will continue to improve this, so you should star this repository, too.

Contribution

  • Open a pull request with improvements
  • Discuss ideas in issues
  • Spread the word

License

License

Author

Dr. Milan Milanović - CTO at 3MD and Microsoft MVP for Developer Technologies.

Open Source Agenda is not affiliated with "DotNet Developer Roadmap" Project. README Source: milanm/DotNet-Developer-Roadmap

Open Source Agenda Badge

Open Source Agenda Rating