Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/saifaustcse/dotnet-developer-roadmap

Full-stack .NET Developer Roadmap
https://github.com/saifaustcse/dotnet-developer-roadmap

developer-roadmap dotnet dotnet-core dotnetcore full-stack net-developer-roadmap roadmap

Last synced: 3 months ago
JSON representation

Full-stack .NET Developer Roadmap

Lists

README

        

# .NET Developer Roadmap

> Roadmap to becoming an Full stack .NET Developer in 2024

Below you can find a chart demonstrating the paths that you can take and the libraries that you would want to learn to become a Full stack .NET developer. I made this chart as a tip for everyone who asks me, "What should I learn next as a .NET developer?"

## Disclaimer

> The purpose of this roadmap is to give you an idea about the landscape. The road map will guide you if you are confused about what to learn next, rather than encouraging you to pick what is hip and trendy. You should grow some understanding of why one tool would be better suited for some cases than the other and remember hip and trendy does not always 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

![Roadmap](https://github.com/saifaustcse/.net-developer-roadmap/blob/master/images/donet-developer-roadmap-v2.png)

## Resources

1. Learn the prerequisites

- [C#](https://docs.microsoft.com/en-us/dotnet/csharp/)
- [SQL Fundamentals](https://www.w3schools.com/sql/)
- [HTML](https://www.w3schools.com/html/)
- [CSS](https://www.w3schools.com/css/)
- [JavaScript](https://www.w3schools.com/js/)
- [.NET](https://docs.microsoft.com/en-us/documentation/)
- [ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-6.0)

2. OOP Fundamentals

- [OOP C# Fundamentals](https://www.w3schools.com/cs/cs_oop.asp)

3. SOLID principles

- [SOLID Design Principles in C#](https://dotnettutorials.net/course/solid-design-principles/)

4. Desktop Application frameworks

- [WPF](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/overview/?view=netdesktop-6.0)
- [Windows Forms](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/?view=netdesktop-6.0)

5. Mobile Application/Game development

- [Cross-platform mobile development in Visual Studio](https://docs.microsoft.com/en-us/visualstudio/cross-platform/cross-platform-mobile-development-in-visual-studio?view=vs-2022)
- [Xamarin](https://docs.microsoft.com/en-us/xamarin/?view=vs-2022)

6. Web Application frameworks

- [ASP.NET Core MVC](https://learn.microsoft.com/en-us/aspnet/core/mvc/overview?view=aspnetcore-6.0)
- [ASP.NET MVC](https://docs.microsoft.com/en-us/aspnet/mvc/)
- [ASP.NET Web Forms](https://docs.microsoft.com/en-us/aspnet/web-forms/)

7. Client Side Frameworks

- [React Developer Roadmap](https://github.com/saifaustcse/react-developer-roadmap)
- [vue Developer Roadmap](https://github.com/saifaustcse/vue-developer-roadmap)
- [Angular Developer Roadmap](https://github.com/saifaustcse/angular-developer-roadmap)
- [AngularJs](https://angularjs.org/)

8. Web Service frameworks

- [Web API with ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-6.0&tabs=visual-studio)
- [ASP.NET Web API](https://docs.microsoft.com/en-us/aspnet/web-api/)
- [ASP.NET WCF](https://docs.microsoft.com/en-us/dotnet/framework/wcf/getting-started-tutorial)

9. Client-Server Communication

1. REST
- [OData](https://devblogs.microsoft.com/odata/experimenting-with-odata-in-asp-net-core-3-1)
- [Sieve](https://github.com/Biarity/Sieve)
2. [gRPC](https://docs.microsoft.com/en-us/aspnet/core/grpc)
3. GraphQL
- [HotChocolate](https://github.com/ChilliCream/hotchocolate)
- [GraphQL-dotnet](https://github.com/graphql-dotnet/graphql-dotnet)

10. Real-Time Communication

- [SignalR](https://docs.microsoft.com/aspnet/core/signalr)
- [WebSockets](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/websockets)

11. ORM

- [Entity Framework](https://docs.microsoft.com/en-us/ef/)
- [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/)
- [Dapper](https://github.com/StackExchange/Dapper)
- [NHibernate](https://github.com/nhibernate/nhibernate-core)

12. Databases

1. Relational
- [SQL Server](https://www.microsoft.com/sql-server/sql-server-2019)
- [Oracle](https://www.oracle.com/database/technologies/oracle-database-software-downloads.html)
- [MySQL](https://www.mysql.com)
- [PostgreSQL](https://www.postgresql.org)
- [MariaDB](https://mariadb.org)
2. Cloud Databases
- [CosmosDB](https://docs.microsoft.com/azure/cosmos-db)
- [DynamoDB](https://aws.amazon.com/dynamodb)
3. NoSQL
- [Redis](https://redis.io)
- [MongoDB](https://docs.microsoft.com/aspnet/core/tutorials/first-mongo-app)
- [Apache Cassandra](http://cassandra.apache.org)
- [LiteDB](https://github.com/mbdavid/LiteDB)
- [RavenDB](https://github.com/ravendb/ravendb)
- [CouchDB](http://couchdb.apache.org)

13. Dependency Injection

1. [Dependency Injection](https://dotnettutorials.net/lesson/dependency-injection-design-pattern-csharp/)

2. DI Containers

- [Microsoft.Extensions.DependencyInjection](https://docs.microsoft.com/aspnet/core/fundamentals/dependency-injection)
- [AutoFac](https://autofaccn.readthedocs.io/en/latest/integration/aspnetcore.html)
- [Ninject](http://www.ninject.org)
- [Castle Windsor](https://github.com/castleproject/Windsor)
- [Simple Injector](https://github.com/simpleinjector/SimpleInjector)

3. [Life Cycles](https://docs.microsoft.com/aspnet/core/fundamentals/dependency-injection#service-lifetimes)
4. [Scrutor](https://github.com/khellang/Scrutor)

14. Caching

1. [Memory Cache](https://docs.microsoft.com/aspnet/core/performance/caching/memory)
2. [Distributed Cache](https://docs.microsoft.com/aspnet/core/performance/caching/distributed)
1. [Redis](https://redis.io/)
1. [StackExchange.Redis](https://stackexchange.github.io/StackExchange.Redis)
2. [EasyCaching](https://github.com/dotnetcore/EasyCaching)
2. [Memcached](https://memcached.org)
3. Entity Framework 2nd Level Cache
1. [EFCoreSecondLevelCacheInterceptor](https://github.com/VahidN/EFCoreSecondLevelCacheInterceptor)
2. [EntityFrameworkCore.Cacheable](https://github.com/SteffenMangold/EntityFrameworkCore.Cacheable)

15. Logging

1. Log Frameworks
- [Serilog](https://github.com/serilog/serilog)
- [NLog](https://github.com/NLog/NLog)
2. Log Management System
- [ELK Stack](https://www.elastic.co/what-is/elk-stack)
- [Sentry.io](http://sentry.io)
- [Loggly.com](https://loggly.com)
- [Elmah.io](http://elmah.io)

16. Unit Testing

1. Frameworks
- [xUnit](https://docs.microsoft.com/dotnet/core/testing/unit-testing-with-dotnet-test)
- [NUnit](https://docs.microsoft.com/dotnet/core/testing/unit-testing-with-nunit)
- [MSTest](https://docs.microsoft.com/dotnet/core/testing/unit-testing-with-mstest)
2. Mocking
- [Moq](https://github.com/moq/moq4)
- [NSubstitute](https://github.com/nsubstitute/NSubstitute)
- [FakeItEasy](https://github.com/FakeItEasy/FakeItEasy)
3. Assertion
- [FluentAssertion](https://github.com/fluentassertions/fluentassertions)
- [Shouldly](https://github.com/shouldly/shouldly)

17. Security

- [Application Settings & Configurations](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-6.0)
- [Authentication](https://docs.microsoft.com/en-us/aspnet/core/security/authentication/?view=aspnetcore-6.0)
- [Authorization](https://docs.microsoft.com/en-us/aspnet/core/security/authorization/introduction?view=aspnetcore-6.0)

18. Design-Patterns

- [Design Patterns](https://dotnettutorials.net/course/dot-net-design-patterns/)

## Wrap Up

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

Idea from : [Developer RoadMap](https://github.com/kamranahmedse/developer-roadmap)

## Contribution

If you want to contribute to this project to make it more helpful for other Angular developers, your help is very welcome!

Just file an issue, better yet: submit a PR! 🙂

## License

[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)