aspdotnet introduction_.md - brainchildservices/curriculum GitHub Wiki

SLIDE-1

ASP.NET INTRODUCTION

SLIDE-2

  • What is dotnet?
    • .NET is a free, cross-platform, open source developer platform for building many different types of applications.
    • With . NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, and IoT.

SLIDE-3

  • What is asp.net?
    • ASP.NET is an open source web framework, created by Microsoft, for building modern web apps and services with .NET.
    • ASP.NET is cross platform and runs on Windows, Linux, macOS, and Docker.

SLIDE-4

  • Difference between asp.net and dotnet?

    Difference-Between- NET-and-ASP NET-Comparison-Summary

SLIDE-5

  • Explain dotnet runtime?

    • dotnetruntime

    • The .NET Core Runtimes are the smallest self-contained and specific component and contain the absolute minimum to run just .NET Core on a specific platform.

    • The runtime is determined by your project's runtime specifier in the .csproj file:

                         <TargetFramework>netcoreapp2.1</TargetFramework>
      
    • To develop, build and publish an application will require an SDK.

SLIDE-6

  • What is dotnet sdk
    • The .NET SDK is a set of libraries and tools that allow developers to create .NET applications and libraries. It contains the following components that are used to build and run applications:

      • The .NET CLI.
      • .NET libraries and runtime.
      • The dotnet driver.
    • To learn how to install the .NET SDK, see Install .NET Core.

SLIDE-7

  • What is dotnet framework?
    • .NET Framework (pronounced dot net) is a product of Microsoft.
    • It is a programming framework used by Software applications in order to run.[1]
    • It has two major parts:
      • the Common Language Runtime (CLR) : The CLR is an execution engine used to handle running programs.
      • .Net Framework Class Library : The class library provides a library of reusable code that applications can use.

SLIDE-8