diff --git a/1-welcome/README.md b/1-welcome/README.md index 03fad50..bf95465 100644 --- a/1-welcome/README.md +++ b/1-welcome/README.md @@ -1,3 +1,32 @@ # Welcome to the Intro to Web Dev with .NET series +In this Welcome, we’ll introduce ourselves, give you the lesson rundown, take you on a tour of the .NET ecosystem, and show you all the tools you’ll need to build the projects. -Make sure you have [Visual Studio](https://visualstudio.microsoft.com/vs/features/net-development/) or [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/net/), as well as the [.NET 6 SDK](https://dotnet.microsoft.com/download). \ No newline at end of file +![.NET bot waving](../images/dotnet-bot.svg) + +## Prerequisite tools +- [Visual Studio](https://aka.ms/WebLearningSeries-git-vsDownload) or [Visual Studio for Mac](https://aka.ms/WebLearningSeries-git-vsmacDownload) - check out our [more detailed instructions](/1-welcome/how-to-install-vs.md) for extra help +- [.NET 6 SDK](https://aka.ms/WebLearningSeries-git-dotnetDownload) + +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. + +## Who are we? +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. + +## What to expect +- Week 1 – Welcome! +- 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 + +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? +.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 you’ve ever used Stack Overflow, eaten Chipotle, or received a package delivered by UPS, then you’ve interacted with .NET! + +With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, IoT, and more! + +![.NET, a unified development platform](../images/what-is-dotnet.png) + +For this series we’ll use ASP.NET Core and Blazor to build web apps! diff --git a/2-csharp/README.md b/2-csharp/README.md index 2b8f08d..094cf2f 100644 --- a/2-csharp/README.md +++ b/2-csharp/README.md @@ -244,3 +244,7 @@ Want more practice with C#? The .NET team has you covered. Here's a few learning * [Learn to Code Page](https://dotnet.microsoft.com/learntocode) Connect with us! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. + +# How'd it go? + +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file diff --git a/3-razor-pages/README.md b/3-razor-pages/README.md index 2bceb6a..78838b0 100644 --- a/3-razor-pages/README.md +++ b/3-razor-pages/README.md @@ -242,3 +242,7 @@ In order to get started quickly, we've kept things as simple as we could, and we ## Connect with us We're excited to support you on your learning journey! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. + +# How'd it go? + +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file diff --git a/4-minimal-api/README.md b/4-minimal-api/README.md index 5c8a528..3e7e8fa 100644 --- a/4-minimal-api/README.md +++ b/4-minimal-api/README.md @@ -249,3 +249,7 @@ In the next lesson, you'll learn about building a game with Blazor! Stay tuned! ## Connect with us We're excited to support you on your learning journey! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. + +# How'd it go? + +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file diff --git a/5-blazor/README.md b/5-blazor/README.md index 81723c0..626d54d 100644 --- a/5-blazor/README.md +++ b/5-blazor/README.md @@ -514,3 +514,7 @@ Happy coding and have fun! ## Connect with us We're excited to support you on your learning journey! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. + +# How'd it go? + +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file diff --git a/6-publish/README.md b/6-publish/README.md index 0abb838..5b2c499 100644 --- a/6-publish/README.md +++ b/6-publish/README.md @@ -62,4 +62,13 @@ You can also find these instructions in the [Azure documentation](https://docs.m 12. In the **Publish** dialog, ensure your new App Service app is selected in **App Service instance**, then select **Finish**. Visual Studio creates a publish profile for you for the selected App Service app. 13. In the **Publish** page, select **Publish**. If you see a warning message, select **Continue**.Visual Studio builds, packages, and publishes the app to Azure, and then launches the app in the default browser. -Congratulations 🎉 You've just published your web applications! +Congratulations 🎉 You've just published your web applications! Thank you for joining us on our exploration of web development with .NET. We hope you learned something and had fun! + + +## Connect with us + +We're excited to support you on your learning journey! Check out the [.NET Community Page](https://dotnet.microsoft.com/platform/community) to find links to our blogs, YouTube, Twitter, and more. + +# How'd it go? + +Please take this quick, [10 question survey](https://aka.ms/WebLearningSeries-git-survey) to give us your thoughts on this lesson & challenge! \ No newline at end of file diff --git a/README.md b/README.md index f3b8e2c..1816d91 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,51 @@ -## Intro to Web Development with .NET +## Intro to Web Development with .NET +Welcome to the Intro to Web Development with .NET GitHub repository! We’re excited to take you along with us as we build awesome projects and learn all about the wonderful world of web development. -Welcome to the Intro to Web Development with .NET GitHub repository! +Here, you'll find a 6-part series of lessons and projects to get you started building web applications with .NET! -Here, you'll find all of the projects and challenges associated with each email in the email series. Each email will have a dedicated folder containing all the relevant information for that week. +![.NET Bot](/images/dotnet-bot_jetpack-faceing-right.svg) +## How-to +To use this curriculum on your own, fork the entire repo and go into the numbered folders to access the lessons and projects. This series is designed to take 6 weeks, about 1 week per lesson, but feel free to complete it at your own pace. -We are currently in the planning stages of this series! +## Lessons +| | Lesson Name | Learning Objectives | Linked Lesson | +| :-: | :------------------------------------------------------: | ----------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------: | +| 01 | Welcome | Introduction to C#, .NET, and web development with .NET | [Welcome to the Intro to Web Dev with .NET series](/1-welcome) | +| 02 | C# | A quick runthrough of C# attributes, syntax, and OOP | [C# Crash Course](/2-csharp) | +| 03 | Razor Pages | Learn about ASP.NET Core, Razor Pages, and build a pizza website 🍕 | [Build a Pizza Website with Razor Pages](/3-razor-pages) | +| 04 | Minimal APIs | Build a Minimal API backend for your pizza website | [Build an HTTP backend with Minimal APIs](/4-minimal-api) | +| 05 | Blazor | Learn Blazor and build an interactive Connect Four game | [Introducing Blazor Web Applications](/5-blazor) | +| 06 | Publish to Azure | Learn how to publish your project to the cloud☁️ | [Publish your Web App to Azure](/6-publish) | + + +## Help Resources +There's a few places you can go for help and more information on the topics covered in this repository. +### Documentation +1. [C# documentation](https://aka.ms/WebLearningSeries-git-csharpDocs) +1. [.NET documentation](https://aka.ms/WebLearningSeries-git-dotnetDocs) +1. [ASP.NET documentation, Razor Pages](https://aka.ms/WebLearningSeries-git-razorDocs) +1. [ASP.NET documentation, Minimal APIs](https://aka.ms/WebLearningSeries-git-minapiDocs) +1. [ASP.NET documentation, Blazor](https://aka.ms/WebLearningSeries-git-blazorDocs) +1. [Azure documentation](https://aka.ms/WebLearningSeries-git-azureDocs) + +### Beginner Video Series +1. [C# for Beginners](https://aka.ms/WebLearningSeries-git-csharpvids) +1. [.NET for Beginners](https://aka.ms/WebLearningSeries-git-dotnetvids) +1. [ASP.NET for Beginners](https://aka.ms/WebLearningSeries-git-aspvids) +1. [Web APIs for Beginners](https://aka.ms/WebLearningSeries-git-apivids) + +## How to leave feedback +To leave us feedback on this learning series, please fill out our [survey](https://aka.ms/WebLearningSeries-git-survey) or file an issue in this repository. + + +## Learn More & Connect with us + +Start a .NET [Learning Path](https://aka.ms/WebLearningSeries-git-MSLearn) + +Find a .NET user group & join a .NET events at our [Community Page](https://aka.ms/WebLearningSeries-git-community). + +Follow us [@dotnet on Twitter](https://aka.ms/WebLearningSeries-git-twitter) ## .NET Foundation diff --git a/images/dotnet-bot.svg b/images/dotnet-bot.svg new file mode 100644 index 0000000..91ec412 --- /dev/null +++ b/images/dotnet-bot.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/dotnet-bot_jetpack-faceing-right.svg b/images/dotnet-bot_jetpack-faceing-right.svg new file mode 100644 index 0000000..261b510 --- /dev/null +++ b/images/dotnet-bot_jetpack-faceing-right.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/what-is-dotnet.png b/images/what-is-dotnet.png new file mode 100644 index 0000000..536c2e9 Binary files /dev/null and b/images/what-is-dotnet.png differ