Skip to content

Commit 79c1a6f

Browse files
Added project & solution files
1 parent 59f7b36 commit 79c1a6f

File tree

30 files changed

+671
-0
lines changed

30 files changed

+671
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<UserSecretsId>aspnet-SSR with Global and Individual-394cbc01-aa5a-4e77-b769-1d2837976a33</UserSecretsId>
8+
<RootNamespace>SSR_with_Global_and_Individual</RootNamespace>
9+
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
17+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="23.2.4" />
18+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="23.2.4" />
19+
</ItemGroup>
20+
21+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34309.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSR_with_Global_and_Individual", "SSR_with_Global_and_Individual.csproj", "{0A892465-BF85-42DE-81CF-E18E98DCC3E0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{0A892465-BF85-42DE-81CF-E18E98DCC3E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{0A892465-BF85-42DE-81CF-E18E98DCC3E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{0A892465-BF85-42DE-81CF-E18E98DCC3E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{0A892465-BF85-42DE-81CF-E18E98DCC3E0}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {D831E664-BBB4-41C2-8D57-872AF8F97DDD}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<RootNamespace>SSR_with_Global_and_None</RootNamespace>
8+
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
9+
</PropertyGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="23.2.4" />
12+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="23.2.4" />
13+
</ItemGroup>
14+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34309.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSR_with_Global_and_None", "SSR_with_Global_and_None.csproj", "{FFCA7910-88D4-4B01-BF3E-F47E9692F0FB}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{FFCA7910-88D4-4B01-BF3E-F47E9692F0FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{FFCA7910-88D4-4B01-BF3E-F47E9692F0FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{FFCA7910-88D4-4B01-BF3E-F47E9692F0FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{FFCA7910-88D4-4B01-BF3E-F47E9692F0FB}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {8E35F607-D993-4AA0-91DB-3EDDB8887AEF}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<UserSecretsId>aspnet-SSR with Per Page and Individual-024cd262-3b5e-4560-8d03-9a8525ea850f</UserSecretsId>
8+
<RootNamespace>SSR with Per Page and Individual</RootNamespace>
9+
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
17+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="23.2.4" />
18+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="23.2.4" />
19+
</ItemGroup>
20+
21+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34309.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSR_with_Per_Page_and_Individual", "SSR_with_Per_Page_and_Individual.csproj", "{EC017BDE-A7E6-4E1E-8207-C4A898252825}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{EC017BDE-A7E6-4E1E-8207-C4A898252825}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{EC017BDE-A7E6-4E1E-8207-C4A898252825}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{EC017BDE-A7E6-4E1E-8207-C4A898252825}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{EC017BDE-A7E6-4E1E-8207-C4A898252825}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {A9CF4514-A1D7-4F2D-BD91-D9187CD6589E}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<RootNamespace>SSR_with_Per_Page_and_None</RootNamespace>
8+
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="23.2.4" />
13+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="23.2.4" />
14+
</ItemGroup>
15+
16+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34309.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSR_with_Per_Page_and_None", "SSR_with_Per_Page_and_None.csproj", "{3D999E18-1C24-42CC-95A9-01B8DC97CB5C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{3D999E18-1C24-42CC-95A9-01B8DC97CB5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{3D999E18-1C24-42CC-95A9-01B8DC97CB5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{3D999E18-1C24-42CC-95A9-01B8DC97CB5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{3D999E18-1C24-42CC-95A9-01B8DC97CB5C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {70BEE6CE-925A-41AA-8AFE-EBA89C0183A2}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<UserSecretsId>aspnet-Server with Per Page and Individual-7f7cd652-bf57-4902-8579-ff1465b67ae1</UserSecretsId>
8+
<RootNamespace>Server with Per Page and Individual</RootNamespace>
9+
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" />
17+
<PackageReference Include="Syncfusion.Blazor.Grid" Version="23.1.44" />
18+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="23.1.44" />
19+
</ItemGroup>
20+
21+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34309.116
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Server_with_Per_Page_and_Individual", "Server_with_Per_Page_and_Individual.csproj", "{D109B4C9-0668-4193-817C-2F19DA47585A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{D109B4C9-0668-4193-817C-2F19DA47585A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{D109B4C9-0668-4193-817C-2F19DA47585A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{D109B4C9-0668-4193-817C-2F19DA47585A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{D109B4C9-0668-4193-817C-2F19DA47585A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {AA775F38-CE52-4EBA-BBD1-26279DB7BAE8}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)