Skip to content

Developer Fundamentals are what I consider a minimum set of have-to-know aspects of .Net and C# every developer should know and understand.

Notifications You must be signed in to change notification settings

Net-Advantage/DeveloperFundamentals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DeveloperFundamentals

Developer Fundamentals are what I consider a minimum set of have-to-know aspects of .Net and C# every developer should know and understand.

In order

  • Configuration Fundamentals
  • Dependency Injection Fundamentals
  • Logging Fundamentals
  • Exception Handling Fundamentals
  • xUnit Testing Fundamentals
  • Integration Testing Fundamentals
  • Web API Fundamentals
  • Web Application Fundamentals
  • Blazor WebAssembly Fundamentals

dotnet CLI

Create a solution using the dotnet CLI

dotnet new sln -n DeveloperFundamentals

Create a project using the dotnet CLI

Console application

dotnet new console -n DeveloperFundamentals.ConsoleApp

Class library

dotnet new classlib -n DeveloperFundamentals.ClassLibrary

xUnit test project

dotnet new xunit -n DeveloperFundamentals.XUnitTests

ASP.NET Core Web API

dotnet new webapi -n DeveloperFundamentals.WebApi

ASP.NET Core Web Application

dotnet new webapp -n DeveloperFundamentals.WebApp

Blazor WebAssembly application

dotnet new blazorwasm -n DeveloperFundamentals.BlazorWasm

About

Developer Fundamentals are what I consider a minimum set of have-to-know aspects of .Net and C# every developer should know and understand.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published