Skip to content

Commit 12f9274

Browse files
my-first-static-web-app
1 parent 2d3687d commit 12f9274

File tree

14 files changed

+76
-6
lines changed

14 files changed

+76
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# What is Azure Static Web Apps?
2+
3+
Azure Static Web Apps solves the hard problems all the way from your source code to global availability.
4+
5+
While you stay focused on developing your app, Azure Static Web Apps automatically builds and hosts it from GitHub or Azure DevOps.
6+
7+
Static web apps are commonly built using libraries and frameworks like Angular, React, Svelte, or Vue. These apps include HTML, CSS, JavaScript, and image assets that make up the application. When using a traditional web server architecture, these files are served from a single server along side any required API endpoints.
8+
9+
With Azure Static Web Apps, static assets are separated from a traditional web server and are instead served from points globally distributed around the world. This distribution makes serving files much faster as files are physically closer to users. API endpoints, which are optional, are hosted using a serverless architecture, which avoids the need for a full back-end server altogether.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit e6f96ee3c1422e5ff6b389640615803604ba8795

AzureModule.sln

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.002.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build web apps with Blazor", "Build web apps with Blazor", "{4AA73EE1-5D43-4BB7-8884-8A3EE5AE2010}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "unit 3 Exercise - Create and run a Blazor web app", "Build web apps with Blazor\unit 3 Exercise - Create and run a Blazor web app\unit 3 Exercise - Create and run a Blazor web app.csproj", "{22629588-105C-4BDA-AD76-15C16F3ADBE9}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "unit 4 Razor components", "unit 4 Razor components", "{CBD6CB76-4E79-46CC-9350-8B0E3B4DBD22}"
11+
EndProject
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorApp", "Build web apps with Blazor\unit 4 Razor components\BlazorApp\BlazorApp.csproj", "{30143C2C-E12C-4808-9A02-4AC7E3A82FC7}"
13+
EndProject
14+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "unit 5 Excercise - Add a component", "unit 5 Excercise - Add a component", "{ECC4EDFA-2D05-487F-BF5A-E0D24305BC86}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorApp1", "Build web apps with Blazor\unit 5 Excercise - Add a component\BlazorApp1\BlazorApp1.csproj", "{80F4FD01-9A8E-4D83-8197-2C23421AF315}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Release|Any CPU = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24+
{22629588-105C-4BDA-AD76-15C16F3ADBE9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{22629588-105C-4BDA-AD76-15C16F3ADBE9}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{22629588-105C-4BDA-AD76-15C16F3ADBE9}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{22629588-105C-4BDA-AD76-15C16F3ADBE9}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{30143C2C-E12C-4808-9A02-4AC7E3A82FC7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{30143C2C-E12C-4808-9A02-4AC7E3A82FC7}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{30143C2C-E12C-4808-9A02-4AC7E3A82FC7}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{30143C2C-E12C-4808-9A02-4AC7E3A82FC7}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{80F4FD01-9A8E-4D83-8197-2C23421AF315}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{80F4FD01-9A8E-4D83-8197-2C23421AF315}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{80F4FD01-9A8E-4D83-8197-2C23421AF315}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{80F4FD01-9A8E-4D83-8197-2C23421AF315}.Release|Any CPU.Build.0 = Release|Any CPU
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
GlobalSection(NestedProjects) = preSolution
41+
{22629588-105C-4BDA-AD76-15C16F3ADBE9} = {4AA73EE1-5D43-4BB7-8884-8A3EE5AE2010}
42+
{CBD6CB76-4E79-46CC-9350-8B0E3B4DBD22} = {4AA73EE1-5D43-4BB7-8884-8A3EE5AE2010}
43+
{30143C2C-E12C-4808-9A02-4AC7E3A82FC7} = {CBD6CB76-4E79-46CC-9350-8B0E3B4DBD22}
44+
{ECC4EDFA-2D05-487F-BF5A-E0D24305BC86} = {4AA73EE1-5D43-4BB7-8884-8A3EE5AE2010}
45+
{80F4FD01-9A8E-4D83-8197-2C23421AF315} = {ECC4EDFA-2D05-487F-BF5A-E0D24305BC86}
46+
EndGlobalSection
47+
GlobalSection(ExtensibilityGlobals) = postSolution
48+
SolutionGuid = {F06055D9-1DD9-4168-AB89-535975A7B0D6}
49+
EndGlobalSection
50+
EndGlobal

Build web apps with Blazor/unit 3 Exercise - Create and run a Blazor web app/obj/Debug/net8.0/unit 3 Exercise - Create and run a Blazor web app.AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("unit_3_Exercise_-_Create_and_run_a_Blazor_web_app")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a12547d4d09a48e7ba0be2f002ab1b906fbdd967")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2d3687d68a43e534493689591c3c9ea297920fcb")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("unit_3_Exercise_-_Create_and_run_a_Blazor_web_app")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("unit_3_Exercise_-_Create_and_run_a_Blazor_web_app")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
04ab1a81e9b208428f8c417659a8a29f15d226d5c8d4863ca552d08b4b5caae3
1+
b851b7a9d8dfd7b67c84007f2a44475c9faa717649d2bf73980be14eb3c6f7fb

Build web apps with Blazor/unit 4 Razor components/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("BlazorApp")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a12547d4d09a48e7ba0be2f002ab1b906fbdd967")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2d3687d68a43e534493689591c3c9ea297920fcb")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("BlazorApp")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("BlazorApp")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fad58ed343561d6456be73f0d7ffa1ee3f5754a3c83a166fc55b83c9b1e5dbc7
1+
3b249249a4038571426ddcf0ea8d1240641211d8eda0886f37ad1732126b5d8f

Build web apps with Blazor/unit 5 Excercise - Add a component/BlazorApp1/obj/Debug/net8.0/BlazorApp1.AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[assembly: System.Reflection.AssemblyCompanyAttribute("BlazorApp1")]
1414
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
1515
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a12547d4d09a48e7ba0be2f002ab1b906fbdd967")]
16+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2d3687d68a43e534493689591c3c9ea297920fcb")]
1717
[assembly: System.Reflection.AssemblyProductAttribute("BlazorApp1")]
1818
[assembly: System.Reflection.AssemblyTitleAttribute("BlazorApp1")]
1919
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
63e631e8db7266313e2ef933e062cd2463298515a8e6b06aadb5e732b36f535f
1+
c7d93a10c1f3c8a696bc4b7b0ffa5b3eb00b2f12daf39ba2b5c6195c38e8c3cd
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Introduction
2+
3+
Azure Static Web Apps solves the hard problems all the way from your source code to global availability.
4+
5+
While you stay focused on developing your app, Azure Static Web Apps automatically builds and hosts it from GitHub or Azure DevOps.
6+
7+
Static web apps are commonly built using libraries and frameworks like Angular, React, Svelte, or Vue. These apps include HTML, CSS, JavaScript, and image assets that make up the application. When using a traditional web server architecture, these files are served from a single server along side any required API endpoints.
8+
9+
With Azure Static Web Apps, static assets are separated from a traditional web server and are instead served from points globally distributed around the world. This distribution makes serving files much faster as files are physically closer to users. API endpoints, which are optional, are hosted using a serverless architecture, which avoids the need for a full back-end server all together.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit c25f4dd47f696694f2b2b6a822020e038eaab576

0 commit comments

Comments
 (0)