diff --git a/1-welcome/README.md b/1-welcome/README.md
index 55f0499..13120db 100644
--- a/1-welcome/README.md
+++ b/1-welcome/README.md
@@ -7,29 +7,29 @@ In this Welcome, we’ll introduce ourselves, give you the lesson rundown, take
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)
-- [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)
+- [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)
-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.
+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.
+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
+- 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!
+.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!
+With .NET, you can use multiple languages, editors, and libraries to build for web, mobile, desktop, games, IoT, and more!

-For this series we’ll use ASP.NET Core and Blazor to build web apps!
+For this series we’ll use ASP.NET Core and Blazor to build web apps!
diff --git a/1-welcome/how-to-install-vs.md b/1-welcome/how-to-install-vs.md
index c6e402e..07e18fa 100644
--- a/1-welcome/how-to-install-vs.md
+++ b/1-welcome/how-to-install-vs.md
@@ -1,6 +1,8 @@
# Install Visual Studio
-## If you're on Windows
+If you're using Windows for development, we recommend using Visual Studio for .NET development. Alternatively, you can use Visual Studio Code on Windows, macOS, and Linux.
+
+## To set up Visual Studio on Windows
1. Go to the [Develop .NET applications page](https://visualstudio.microsoft.com/vs/features/net-development/) of the Visual Studio website
1. Find the "Download Visual Studio with .NET" dropdown and select "Community 2022"
1. Run the exe and let Visual Studio download
@@ -8,20 +10,15 @@
1. Sign in to Visual Studio
1. Done ✔️
-## If you're on Mac
-1. Go to the [Build Web Apps using .NET Core page](https://visualstudio.microsoft.com/vs/mac/net/) of the Visual Studio website
-1. Select the VisualStudioforMacInstaller.dmg to mount the installer, then run it by double-clicking the arrow logo
-2. Select **Open**
-1. An alert will appear asking you to acknowledge the privacy and license terms. Follow the links to read them, then press **Continue** if you agree
-1. The list of available workloads is displayed. Select the .NET Core component.
-1. Press **Install**
-1. Sign in and choose your keyboard preferences
+## To set up Visual Studio Code on Windows, macOS, or Linux
+1. Install the [.NET SDK](https://dot.net/download)
+1. Install [Visual Studio Code](https://code.visualstudio.com)
+1. Install the [C# Dev Kit](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit) extension
1. Done ✔️
## Want more help?
If you want more detailed installation instructions, check out the Microsoft Documentation.
-* If you're on Windows, go to [Install Visual Studio](https://docs.microsoft.com/visualstudio/install/install-visual-studio?view=vs-2022)
-* If you're on Mac, go to [Install Visual Studio for Mac](https://docs.microsoft.com/visualstudio/mac/installation?view=vsmac-2019)
+* [Install Visual Studio](https://docs.microsoft.com/visualstudio/install/install-visual-studio?view=vs-2022)
+* [Getting Started with C# in VS Code](https://code.visualstudio.com/docs/csharp/get-started)
Check out the [Learn to code in Visual Studio](https://visualstudio.microsoft.com/vs/getting-started/) page to learn more about the installation process, how to get started with Visual Studio, and how to make it your own with themes! 🤗
-
diff --git a/2-csharp/lesson-2-projects/challenge-project/Final/Final.csproj b/2-csharp/lesson-2-projects/challenge-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-2-projects/challenge-project/Final/Final.csproj
+++ b/2-csharp/lesson-2-projects/challenge-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-2-projects/challenge-project/Starter/Starter.csproj b/2-csharp/lesson-2-projects/challenge-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-2-projects/challenge-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-2-projects/challenge-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-2-projects/guided-project/Final/Final.csproj b/2-csharp/lesson-2-projects/guided-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-2-projects/guided-project/Final/Final.csproj
+++ b/2-csharp/lesson-2-projects/guided-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-2-projects/guided-project/Starter/Starter.csproj b/2-csharp/lesson-2-projects/guided-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-2-projects/guided-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-2-projects/guided-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-3-projects/challenge-project/Final/Final.csproj b/2-csharp/lesson-3-projects/challenge-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-3-projects/challenge-project/Final/Final.csproj
+++ b/2-csharp/lesson-3-projects/challenge-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-3-projects/challenge-project/Starter/Starter.csproj b/2-csharp/lesson-3-projects/challenge-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-3-projects/challenge-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-3-projects/challenge-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-3-projects/guided-project/Final/Final.csproj b/2-csharp/lesson-3-projects/guided-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-3-projects/guided-project/Final/Final.csproj
+++ b/2-csharp/lesson-3-projects/guided-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-3-projects/guided-project/Starter/Starter.csproj b/2-csharp/lesson-3-projects/guided-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-3-projects/guided-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-3-projects/guided-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-4-projects/challenge-project/Final/Final.csproj b/2-csharp/lesson-4-projects/challenge-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-4-projects/challenge-project/Final/Final.csproj
+++ b/2-csharp/lesson-4-projects/challenge-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-4-projects/challenge-project/Starter/Starter.csproj b/2-csharp/lesson-4-projects/challenge-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-4-projects/challenge-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-4-projects/challenge-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-4-projects/guided-project/Final/Final.csproj b/2-csharp/lesson-4-projects/guided-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-4-projects/guided-project/Final/Final.csproj
+++ b/2-csharp/lesson-4-projects/guided-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-4-projects/guided-project/Starter/Starter.csproj b/2-csharp/lesson-4-projects/guided-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-4-projects/guided-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-4-projects/guided-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-5-projects/challenge-project/Final/Final.csproj b/2-csharp/lesson-5-projects/challenge-project/Final/Final.csproj
index 74abf5c..91b464a 100644
--- a/2-csharp/lesson-5-projects/challenge-project/Final/Final.csproj
+++ b/2-csharp/lesson-5-projects/challenge-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net6.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-5-projects/challenge-project/Starter/Starter.csproj b/2-csharp/lesson-5-projects/challenge-project/Starter/Starter.csproj
index 74abf5c..91b464a 100644
--- a/2-csharp/lesson-5-projects/challenge-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-5-projects/challenge-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net6.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-6-projects/challenge-project/Final/Final.csproj b/2-csharp/lesson-6-projects/challenge-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-6-projects/challenge-project/Final/Final.csproj
+++ b/2-csharp/lesson-6-projects/challenge-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-6-projects/challenge-project/Starter/Starter.csproj b/2-csharp/lesson-6-projects/challenge-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-6-projects/challenge-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-6-projects/challenge-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-6-projects/guided-project/Final/Final.csproj b/2-csharp/lesson-6-projects/guided-project/Final/Final.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-6-projects/guided-project/Final/Final.csproj
+++ b/2-csharp/lesson-6-projects/guided-project/Final/Final.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/2-csharp/lesson-6-projects/guided-project/Starter/Starter.csproj b/2-csharp/lesson-6-projects/guided-project/Starter/Starter.csproj
index f02677b..91b464a 100644
--- a/2-csharp/lesson-6-projects/guided-project/Starter/Starter.csproj
+++ b/2-csharp/lesson-6-projects/guided-project/Starter/Starter.csproj
@@ -2,7 +2,7 @@
Exe
- net7.0
+ net8.0enableenable
diff --git a/3-razor-pages/0-start/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj b/3-razor-pages/0-start/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
index c78c9c7..1b28a01 100644
--- a/3-razor-pages/0-start/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
+++ b/3-razor-pages/0-start/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
@@ -1,7 +1,7 @@
- net6.0
+ net8.0enableenable
diff --git a/3-razor-pages/1-complete/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj b/3-razor-pages/1-complete/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
index e0a691c..82fe666 100644
--- a/3-razor-pages/1-complete/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
+++ b/3-razor-pages/1-complete/RazorPagesPizza/RazorPagesPizza/RazorPagesPizza.csproj
@@ -1,18 +1,15 @@
- net6.0
+ net8.0enableenable
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
+
+
+
diff --git a/3-razor-pages/README.md b/3-razor-pages/README.md
index b672464..41fd143 100644
--- a/3-razor-pages/README.md
+++ b/3-razor-pages/README.md
@@ -8,7 +8,9 @@ Welcome back! In the last lesson, you got a crash course in C# language fundamen
## Okay, so what are Razor Pages?
-There are a few different kinds of web apps out there. If you’re building highly interactive web apps – like a game or in-browser experience – you would probably want to use Blazor. You’ll learn about that in Week 5. But the huge majority of web sites out there run most of their logic on the server - think shopping and commerce websites, web sites for small businesses and portfolios, news sites, etc. And that’s what Razor Pages is really good at.
+There are a few different kinds of web apps out there. Many web apps render content and handle requests from the server - think shopping and commerce websites, web sites for small businesses and portfolios, news sites, etc. Other web apps are highly interactive – like a game or in-browser experiences. Razor Pages is a web UI framework for building web apps that run from the server.
+
+> Note: Starting in .NET 8, Blazor is the preferred approach for building web UI with ASP.NET Core. You can use Blazor's rich component model to build both server rendered web apps and interactive client web apps. We'll learn more about Blazor in Week 5.
In Razor Pages applications, you’ll write your logic in a Page Model class, and you’ll write your markup in a Razor file. Razor is a nifty language that blends HTML markup with C# logic, so you can pull in your dynamic information from your Page Model class and display it in Razor. If that sounds complicated, don’t worry, because you’re about to see how easy it is to write a simple Pizza store web app using Razor Pages.
@@ -41,7 +43,7 @@ We'll be using Visual Studio 2022 for whole course. If you don't have Visual Stu
1. Select **Next**.
-1. In the **Additional information** dialog, select **.NET 6.0 (Long-term support)** and then select **Create**.
+1. In the **Additional information** dialog, select **.NET 8.0 (Long-term support)** and then select **Create**.

diff --git a/4-minimal-api/0-start/PizzaStore/PizzaStore.csproj b/4-minimal-api/0-start/PizzaStore/PizzaStore.csproj
index c78c9c7..1b28a01 100644
--- a/4-minimal-api/0-start/PizzaStore/PizzaStore.csproj
+++ b/4-minimal-api/0-start/PizzaStore/PizzaStore.csproj
@@ -1,7 +1,7 @@
- net6.0
+ net8.0enableenable
diff --git a/4-minimal-api/1-complete/PizzaStore/PizzaStore.csproj b/4-minimal-api/1-complete/PizzaStore/PizzaStore.csproj
index 2c33b1c..137bb2c 100644
--- a/4-minimal-api/1-complete/PizzaStore/PizzaStore.csproj
+++ b/4-minimal-api/1-complete/PizzaStore/PizzaStore.csproj
@@ -1,7 +1,7 @@
- net6.0
+ net8.0enableenable
diff --git a/5-blazor/0-start/App.razor b/5-blazor/0-start/App.razor
deleted file mode 100644
index 6fd3ed1..0000000
--- a/5-blazor/0-start/App.razor
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
- Not found
-
-
Sorry, there's nothing at this address.
-
-
-
diff --git a/5-blazor/0-start/Blazor.ConnectFour.sln b/5-blazor/0-start/Blazor.ConnectFour.sln
new file mode 100644
index 0000000..31c463c
--- /dev/null
+++ b/5-blazor/0-start/Blazor.ConnectFour.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.2.32414.248
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConnectFour", "ConnectFour\ConnectFour.csproj", "{A39A8B5F-BB76-48CD-BA4E-F0733604EB79}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A39A8B5F-BB76-48CD-BA4E-F0733604EB79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A39A8B5F-BB76-48CD-BA4E-F0733604EB79}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A39A8B5F-BB76-48CD-BA4E-F0733604EB79}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A39A8B5F-BB76-48CD-BA4E-F0733604EB79}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {19E21953-6482-4D77-B071-6C6EE7515DDB}
+ EndGlobalSection
+EndGlobal
diff --git a/5-blazor/0-start/ConnectFour.csproj b/5-blazor/0-start/ConnectFour.csproj
deleted file mode 100644
index 697e8fb..0000000
--- a/5-blazor/0-start/ConnectFour.csproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
- net6.0
- enable
- enable
-
-
-
-
-
-
-
-
diff --git a/5-blazor/0-start/ConnectFour/Components/App.razor b/5-blazor/0-start/ConnectFour/Components/App.razor
new file mode 100644
index 0000000..7827683
--- /dev/null
+++ b/5-blazor/0-start/ConnectFour/Components/App.razor
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5-blazor/0-start/Shared/Board.razor b/5-blazor/0-start/ConnectFour/Components/Board.razor
similarity index 100%
rename from 5-blazor/0-start/Shared/Board.razor
rename to 5-blazor/0-start/ConnectFour/Components/Board.razor
diff --git a/5-blazor/1-complete/ConnectFour/Shared/Board.razor.css b/5-blazor/0-start/ConnectFour/Components/Board.razor.css
similarity index 100%
rename from 5-blazor/1-complete/ConnectFour/Shared/Board.razor.css
rename to 5-blazor/0-start/ConnectFour/Components/Board.razor.css
diff --git a/5-blazor/1-complete/ConnectFour/Shared/MainLayout.razor b/5-blazor/0-start/ConnectFour/Components/Layout/MainLayout.razor
similarity index 53%
rename from 5-blazor/1-complete/ConnectFour/Shared/MainLayout.razor
rename to 5-blazor/0-start/ConnectFour/Components/Layout/MainLayout.razor
index 839b8fe..5a24bb1 100644
--- a/5-blazor/1-complete/ConnectFour/Shared/MainLayout.razor
+++ b/5-blazor/0-start/ConnectFour/Components/Layout/MainLayout.razor
@@ -7,7 +7,7 @@
+ Swapping to Development environment will display more detailed information about the error that occurred.
+
+
+ The Development environment shouldn't be enabled for deployed applications.
+ It can result in displaying sensitive information from exceptions to end users.
+ For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
+ and restarting the app.
+
-
- @Title
-
-
- Please take our
- brief survey
-
- and tell us what you think.
-
-
-@code {
- // Demonstrates how a parent component can supply parameters
- [Parameter]
- public string? Title { get; set; }
-}
diff --git a/5-blazor/0-start/wwwroot/css/open-iconic/FONT-LICENSE b/5-blazor/0-start/wwwroot/css/open-iconic/FONT-LICENSE
deleted file mode 100644
index a1dc03f..0000000
--- a/5-blazor/0-start/wwwroot/css/open-iconic/FONT-LICENSE
+++ /dev/null
@@ -1,86 +0,0 @@
-SIL OPEN FONT LICENSE Version 1.1
-
-Copyright (c) 2014 Waybury
-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded,
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting -- in part or in whole -- any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-OTHER DEALINGS IN THE FONT SOFTWARE.
diff --git a/5-blazor/0-start/wwwroot/css/open-iconic/ICON-LICENSE b/5-blazor/0-start/wwwroot/css/open-iconic/ICON-LICENSE
deleted file mode 100644
index 2199f4a..0000000
--- a/5-blazor/0-start/wwwroot/css/open-iconic/ICON-LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014 Waybury
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
\ No newline at end of file
diff --git a/5-blazor/0-start/wwwroot/css/open-iconic/README.md b/5-blazor/0-start/wwwroot/css/open-iconic/README.md
deleted file mode 100644
index 6b810e4..0000000
--- a/5-blazor/0-start/wwwroot/css/open-iconic/README.md
+++ /dev/null
@@ -1,114 +0,0 @@
-[Open Iconic v1.1.1](http://useiconic.com/open)
-===========
-
-### Open Iconic is the open source sibling of [Iconic](http://useiconic.com). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](http://useiconic.com/open#icons)
-
-
-
-## What's in Open Iconic?
-
-* 223 icons designed to be legible down to 8 pixels
-* Super-light SVG files - 61.8 for the entire set
-* SVG sprite—the modern replacement for icon fonts
-* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats
-* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats
-* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px.
-
-
-## Getting Started
-
-#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](http://useiconic.com/open#icons) and [Reference](http://useiconic.com/open#reference) sections.
-
-### General Usage
-
-#### Using Open Iconic's SVGs
-
-We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute).
-
-```
-
-```
-
-#### Using Open Iconic's SVG Sprite
-
-Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack.
-
-Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `