intro-to-dotnet-web-dev/1-welcome/README.md

36 lines
2.4 KiB
Markdown
Raw Normal View History

2022-05-07 02:36:36 +02:00
# Welcome to the Intro to Web Dev with .NET series
2022-07-23 00:36:59 +02:00
In this Welcome, well introduce ourselves, give you the lesson rundown, take you on a tour of the .NET ecosystem, and show you all the tools youll need to build the projects.
2022-07-25 21:32:25 +02:00
2022-07-23 00:36:59 +02:00
![.NET bot waving](../images/dotnet-bot.svg)
2022-05-07 02:36:36 +02:00
2022-07-23 00:36:59 +02:00
## Prerequisite tools
In this series, you can use your editor of choice or GitHub Codespaces. Here are some options we suggest:
- [GitHub Codespaces](https://code.visualstudio.com/docs/remote/codespaces) for an in-browser coding environment
- [Visual Studio Code](https://code.visualstudio.com/), with the [C# Dev Kit Extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit)
2024-01-17 21:24:58 +01:00
- [Visual Studio](https://aka.ms/WebLearningSeries-git-vsDownload) - check out our [more detailed instructions](/1-welcome/how-to-install-vs.md) for extra help
- [.NET SDK](https://dot.net/download)
2022-07-23 00:36:59 +02:00
2024-01-17 21:24:58 +01:00
During the series you will learn the basics of C#, building websites and web APIs, and even how to publish your apps to the cloud. Here is a rundown of what the next few weeks will look like.
2022-07-23 00:36:59 +02:00
## Who are we?
2024-01-17 21:24:58 +01:00
Let us introduce ourselves. The content in this series is all written by .NET Developer Community Team from Microsoft. More specifically, Jon, James, Jeff, and Katie will be teaching you web development and all things .NET.
2022-07-23 00:36:59 +02:00
## What to expect
- Week 1 Welcome!
2024-01-17 21:24:58 +01:00
- Week 2 C# for web development crash course
- Week 3 We'll build our first pizza website with Razor Pages 🍕
- Week 4 Upgrade our pizza website with a backend using Minimal web APIs
- Week 5 Create a Connect 4 Interactive Web Applications with Blazor
- Week 6 Connect to the cloud by publishing with Azure
2022-07-23 00:36:59 +02:00
To start you on your journey I want to give you a brief overview of what C# and .NET are, and what tools you will need to get going.
## What is .NET?
2024-01-17 21:24:58 +01:00
.NET is a free, cross-platform, open source developer platform for building many different types of applications. This platform is used by companies of all different industries and different sizes. If youve ever used Stack Overflow, eaten Chipotle, or received a package delivered by UPS, then youve interacted with .NET!
2022-07-23 00:36:59 +02:00
2024-01-17 21:24:58 +01:00
With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, IoT, and more!
2022-07-23 00:36:59 +02:00
![.NET, a unified development platform](../images/what-is-dotnet.png)
2024-01-17 21:24:58 +01:00
For this series well use ASP.NET Core and Blazor to build web apps!