Skip to content

Commit 041adbb

Browse files
committed
Add missing build.bat
1 parent 8ef0254 commit 041adbb

File tree

40 files changed

+289
-27
lines changed

40 files changed

+289
-27
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Greetings from Cairo, Egypt. You can [sponsor](https://github.com/sponsors/dodyg
1515
| ----------------------------------------------------------------------- | --- | ---------------------------------------------------------------------------- |
1616
| [Authentication](/projects/authentication) | 4 | |
1717
| [Blazor Client Side (Web Assembly)](/projects/blazor-wasm) | 22 | .NET8 (WIP), Components, Data Binding |
18-
| [Blazor Server](/projects/blazor-ss) | 15 | Localization |
19-
| [Blazor Server Side Render](/projects/blazor-ssr) | | |
18+
| [Blazor Server](/projects/blazor-ss) | 16 | Localization |
19+
| [Blazor Server Side Render](/projects/blazor-ssr) | 22 | |
2020
| [Caching](/projects/caching) | 5 | |
2121
| [Configurations](/projects/configurations) | 10 | |
2222
| [CoreWCF](/projects/corewcf) | 1 | |
Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
11
{
2-
"dotnet.defaultSolution": "RazorComponentTen.sln"
2+
"dotnet.defaultSolution": "RazorComponentTen.sln",
3+
"workbench.colorCustomizations": {
4+
"activityBar.activeBackground": "#de3597",
5+
"activityBar.background": "#de3597",
6+
"activityBar.foreground": "#e7e7e7",
7+
"activityBar.inactiveForeground": "#e7e7e799",
8+
"activityBarBadge.background": "#35520d",
9+
"activityBarBadge.foreground": "#e7e7e7",
10+
"commandCenter.border": "#e7e7e799",
11+
"sash.hoverBorder": "#de3597",
12+
"statusBar.background": "#c11f7d",
13+
"statusBar.debuggingBackground": "#1fc163",
14+
"statusBar.debuggingForeground": "#15202b",
15+
"statusBar.foreground": "#e7e7e7",
16+
"statusBarItem.hoverBackground": "#de3597",
17+
"statusBarItem.remoteBackground": "#c11f7d",
18+
"statusBarItem.remoteForeground": "#e7e7e7",
19+
"titleBar.activeBackground": "#c11f7d",
20+
"titleBar.activeForeground": "#e7e7e7",
21+
"titleBar.inactiveBackground": "#c11f7d99",
22+
"titleBar.inactiveForeground": "#e7e7e799"
23+
},
24+
"peacock.color": "#c11f7d"
325
}

projects/blazor-ssr/RazorComponentThirteen/RazorComponentThirteen.sln

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.5.002.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentTen", "RazorComponentTen\RazorComponentTen.csproj", "{C2CFE3B6-2C5A-464A-BB5F-56DB73FAE3A6}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RazorComponentThirteen", "RazorComponentThirteen\RazorComponentThirteen.csproj", "{642702B0-A4D7-4A1A-9D06-C919DCF04E9B}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wasm", "Wasm\Wasm.csproj", "{FD20A862-F038-4B95-8EA2-2DD1CF8A267F}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wasm", "Wasm\Wasm.csproj", "{E8D78F96-53BF-4986-A1E6-9855ED20DAAB}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1212
Debug|Any CPU = Debug|Any CPU
1313
Release|Any CPU = Release|Any CPU
1414
EndGlobalSection
1515
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16-
{C2CFE3B6-2C5A-464A-BB5F-56DB73FAE3A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17-
{C2CFE3B6-2C5A-464A-BB5F-56DB73FAE3A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{C2CFE3B6-2C5A-464A-BB5F-56DB73FAE3A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
19-
{C2CFE3B6-2C5A-464A-BB5F-56DB73FAE3A6}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{FD20A862-F038-4B95-8EA2-2DD1CF8A267F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{FD20A862-F038-4B95-8EA2-2DD1CF8A267F}.Debug|Any CPU.Build.0 = Debug|Any CPU
22-
{FD20A862-F038-4B95-8EA2-2DD1CF8A267F}.Release|Any CPU.ActiveCfg = Release|Any CPU
23-
{FD20A862-F038-4B95-8EA2-2DD1CF8A267F}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{642702B0-A4D7-4A1A-9D06-C919DCF04E9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{642702B0-A4D7-4A1A-9D06-C919DCF04E9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{642702B0-A4D7-4A1A-9D06-C919DCF04E9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{642702B0-A4D7-4A1A-9D06-C919DCF04E9B}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{E8D78F96-53BF-4986-A1E6-9855ED20DAAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{E8D78F96-53BF-4986-A1E6-9855ED20DAAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{E8D78F96-53BF-4986-A1E6-9855ED20DAAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{E8D78F96-53BF-4986-A1E6-9855ED20DAAB}.Release|Any CPU.Build.0 = Release|Any CPU
2424
EndGlobalSection
2525
GlobalSection(SolutionProperties) = preSolution
2626
HideSolutionNode = FALSE
2727
EndGlobalSection
2828
GlobalSection(ExtensibilityGlobals) = postSolution
29-
SolutionGuid = {5F05B384-C974-4F1F-BDF3-8873320A01D6}
29+
SolutionGuid = {946BC6FF-DD2D-4AD3-B2A5-4BF8E17D5C5F}
3030
EndGlobalSection
3131
EndGlobal

projects/blazor-ssr/RazorComponentThirteen/Wasm/Pages/Index.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
@page "/"
2-
@attribute [RenderModeInteractiveWebAssembly]
32

43
<p>
54
This page is a WASM component and hosted in a separate project.

projects/blazor-ssr/build.bat

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
dotnet build RazorComponentEight
2+
dotnet build RazorComponentEleven
3+
dotnet build RazorComponentFive
4+
dotnet build RazorComponentFour
5+
dotnet build RazorComponentNine
6+
dotnet build RazorComponentOne
7+
dotnet build RazorComponentSeven
8+
dotnet build RazorComponentSix
9+
dotnet build RazorComponentTen
10+
dotnet build RazorComponentThirteen
11+
dotnet build RazorComponentThree
12+
dotnet build RazorComponentTwelve
13+
dotnet build RazorComponentTwo
14+
dotnet build RazorFormHandlingFive
15+
dotnet build RazorFormHandlingFour
16+
dotnet build RazorFormHandlingOne
17+
dotnet build RazorFormHandlingThree
18+
dotnet build RazorFormHandlingTwo
19+
dotnet build RazorMixMatchFour
20+
dotnet build RazorMixMatchOne
21+
dotnet build RazorMixMatchThree
22+
dotnet build RazorMixMatchTwo

projects/blazor-ssr/readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Blazor Server Side Rendering (22)
2+
3+
## Basics
4+
15
* [RazorComponentOne](RazorComponentOne)
26

37
This sample demonstrates a simple usage of Razor Component component in SSR (Server Side Rendering).

projects/blazor-wasm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Blazor Wasm (22)
1+
# Blazor Wasm (33)
22

33
You will find samples for Blazor, a .NET application framework for Web Assembly here. To run the sample, simply type `dotnet watch run` at the folder of each project. Make sure you pay attention which port Kestrel is running on.
44

projects/blazor-wasm/build.bat

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
dotnet build Component
2+
dotnet build ComponentEight
3+
dotnet build ComponentEighteen
4+
dotnet build ComponentEleven
5+
dotnet build ComponentFifteen
6+
dotnet build ComponentFive
7+
dotnet build ComponentFour
8+
dotnet build ComponentFourteen
9+
dotnet build ComponentNine
10+
dotnet build ComponentNineteen
11+
dotnet build ComponentSeven
12+
dotnet build ComponentSeventeen
13+
dotnet build ComponentSix
14+
dotnet build ComponentSixteen
15+
dotnet build ComponentTen
16+
dotnet build ComponentThirteen
17+
dotnet build ComponentThree
18+
dotnet build ComponentTwelve
19+
dotnet build ComponentTwenty
20+
dotnet build ComponentTwentyFive
21+
dotnet build ComponentTwentyFour
22+
dotnet build ComponentTwentyOne
23+
dotnet build ComponentTwentySeven
24+
dotnet build ComponentTwentySix
25+
dotnet build ComponentTwentyThree
26+
dotnet build ComponentTwentyTwo
27+
dotnet build ComponentTwo
28+
dotnet build DataBinding
29+
dotnet build DataBindingTwo
30+
dotnet build HelloWorld
31+
dotnet build QuickGridOne
32+
dotnet build RadioButton
33+
dotnet build RenderFragment

projects/caching/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
This sample uses the `Microsoft.Extensions.Caching.StackExchangeRedis` to store caching value in Redis.
2424

25-
dotnet6
25+
dotnet8

projects/configurations/build.bat

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
dotnet build configuration-1
2+
dotnet build configuration-bind-option
3+
dotnet build configuration-environment-variables
4+
dotnet build configuration-ini
5+
dotnet build configuration-ini-options
6+
dotnet build configuration-IOption
7+
dotnet build configuration-IOption-array
8+
dotnet build configuration-options
9+
dotnet build configuration-xml
10+
dotnet build configuration-xml-options

0 commit comments

Comments
 (0)